2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_HEADER */
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/aes.h"
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_HEADER */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_DEPENDENCIES
|
2015-04-08 12:49:31 +02:00
|
|
|
* depends_on:MBEDTLS_AES_C
|
2013-08-20 11:48:36 +02:00
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
2011-05-26 15:16:06 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-29 12:05:32 +02:00
|
|
|
void aes_encrypt_ecb( data_t * key_str, data_t * src_str,
|
2020-06-26 14:33:03 +02:00
|
|
|
data_t * dst, int setkey_result )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_context ctx;
|
2009-06-28 23:50:27 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
|
|
|
|
2019-01-31 14:20:20 +01:00
|
|
|
mbedtls_aes_init( &ctx );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( mbedtls_aes_setkey_enc( &ctx, key_str->x, key_str->len * 8 ) == setkey_result );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( setkey_result == 0 )
|
2009-07-27 23:03:45 +02:00
|
|
|
{
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_ecb( &ctx, MBEDTLS_AES_ENCRYPT, src_str->x, output ) == 0 );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2020-06-26 14:33:03 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 16, dst->len ) == 0 );
|
2009-07-27 23:03:45 +02:00
|
|
|
}
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_free( &ctx );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-29 12:05:32 +02:00
|
|
|
void aes_decrypt_ecb( data_t * key_str, data_t * src_str,
|
2020-06-26 14:33:03 +02:00
|
|
|
data_t * dst, int setkey_result )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_context ctx;
|
2009-06-28 23:50:27 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
|
|
|
|
2019-01-31 14:20:20 +01:00
|
|
|
mbedtls_aes_init( &ctx );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( mbedtls_aes_setkey_dec( &ctx, key_str->x, key_str->len * 8 ) == setkey_result );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( setkey_result == 0 )
|
2009-07-27 23:03:45 +02:00
|
|
|
{
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_ecb( &ctx, MBEDTLS_AES_DECRYPT, src_str->x, output ) == 0 );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2020-06-26 14:33:03 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 16, dst->len ) == 0 );
|
2009-07-27 23:03:45 +02:00
|
|
|
}
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_free( &ctx );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CBC */
|
2018-06-29 12:05:32 +02:00
|
|
|
void aes_encrypt_cbc( data_t * key_str, data_t * iv_str,
|
2020-06-26 14:33:03 +02:00
|
|
|
data_t * src_str, data_t * dst,
|
2017-06-09 05:32:58 +02:00
|
|
|
int cbc_result )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_context ctx;
|
2009-06-28 23:50:27 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
|
|
|
|
2019-01-31 14:20:20 +01:00
|
|
|
mbedtls_aes_init( &ctx );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_aes_setkey_enc( &ctx, key_str->x, key_str->len * 8 );
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_cbc( &ctx, MBEDTLS_AES_ENCRYPT, src_str->len, iv_str->x, src_str->x, output ) == cbc_result );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( cbc_result == 0 )
|
2010-03-18 22:21:02 +01:00
|
|
|
{
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2020-06-26 14:33:03 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x,
|
|
|
|
src_str->len, dst->len ) == 0 );
|
2010-03-18 22:21:02 +01:00
|
|
|
}
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_free( &ctx );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CBC */
|
2018-06-29 12:05:32 +02:00
|
|
|
void aes_decrypt_cbc( data_t * key_str, data_t * iv_str,
|
2020-06-26 14:33:03 +02:00
|
|
|
data_t * src_str, data_t * dst,
|
2017-06-09 05:32:58 +02:00
|
|
|
int cbc_result )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_context ctx;
|
2009-06-28 23:50:27 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_init( &ctx );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_aes_setkey_dec( &ctx, key_str->x, key_str->len * 8 );
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_cbc( &ctx, MBEDTLS_AES_DECRYPT, src_str->len, iv_str->x, src_str->x, output ) == cbc_result );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( cbc_result == 0)
|
2010-03-18 22:21:02 +01:00
|
|
|
{
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2020-06-26 14:33:03 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x,
|
|
|
|
src_str->len, dst->len ) == 0 );
|
2010-03-18 22:21:02 +01:00
|
|
|
}
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_free( &ctx );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2016-06-09 23:22:58 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_XTS */
|
2018-05-30 16:23:24 +02:00
|
|
|
void aes_encrypt_xts( char *hex_key_string, char *hex_data_unit_string,
|
2018-04-28 18:26:25 +02:00
|
|
|
char *hex_src_string, char *hex_dst_string )
|
2016-06-09 23:22:58 +02:00
|
|
|
{
|
2018-04-28 18:26:25 +02:00
|
|
|
enum { AES_BLOCK_SIZE = 16 };
|
|
|
|
unsigned char *data_unit = NULL;
|
|
|
|
unsigned char *key = NULL;
|
|
|
|
unsigned char *src = NULL;
|
|
|
|
unsigned char *dst = NULL;
|
|
|
|
unsigned char *output = NULL;
|
2018-05-29 19:55:17 +02:00
|
|
|
mbedtls_aes_xts_context ctx;
|
2018-04-28 18:26:25 +02:00
|
|
|
size_t key_len, src_len, dst_len, data_unit_len;
|
2016-06-09 23:22:58 +02:00
|
|
|
|
2018-05-29 19:55:17 +02:00
|
|
|
mbedtls_aes_xts_init( &ctx );
|
2016-06-09 23:22:58 +02:00
|
|
|
|
2020-06-10 10:57:28 +02:00
|
|
|
data_unit = mbedtls_test_unhexify_alloc( hex_data_unit_string,
|
|
|
|
&data_unit_len );
|
2018-04-28 18:26:25 +02:00
|
|
|
TEST_ASSERT( data_unit_len == AES_BLOCK_SIZE );
|
2016-06-09 23:22:58 +02:00
|
|
|
|
2020-06-10 10:53:11 +02:00
|
|
|
key = mbedtls_test_unhexify_alloc( hex_key_string, &key_len );
|
2018-04-28 18:26:25 +02:00
|
|
|
TEST_ASSERT( key_len % 2 == 0 );
|
2016-06-09 23:22:58 +02:00
|
|
|
|
2020-06-10 10:53:11 +02:00
|
|
|
src = mbedtls_test_unhexify_alloc( hex_src_string, &src_len );
|
|
|
|
dst = mbedtls_test_unhexify_alloc( hex_dst_string, &dst_len );
|
2018-04-28 18:26:25 +02:00
|
|
|
TEST_ASSERT( src_len == dst_len );
|
2016-06-09 23:22:58 +02:00
|
|
|
|
2020-06-10 10:42:18 +02:00
|
|
|
output = mbedtls_test_zero_alloc( dst_len );
|
2018-04-28 18:26:25 +02:00
|
|
|
|
|
|
|
TEST_ASSERT( mbedtls_aes_xts_setkey_enc( &ctx, key, key_len * 8 ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, src_len,
|
|
|
|
data_unit, src, output ) == 0 );
|
|
|
|
|
|
|
|
TEST_ASSERT( memcmp( output, dst, dst_len ) == 0 );
|
2016-06-09 23:22:58 +02:00
|
|
|
|
|
|
|
exit:
|
2018-05-29 19:55:17 +02:00
|
|
|
mbedtls_aes_xts_free( &ctx );
|
2018-04-28 18:26:25 +02:00
|
|
|
mbedtls_free( data_unit );
|
|
|
|
mbedtls_free( key );
|
|
|
|
mbedtls_free( src );
|
|
|
|
mbedtls_free( dst );
|
|
|
|
mbedtls_free( output );
|
2016-06-09 23:22:58 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_XTS */
|
2018-05-30 16:23:24 +02:00
|
|
|
void aes_decrypt_xts( char *hex_key_string, char *hex_data_unit_string,
|
2018-04-28 18:26:25 +02:00
|
|
|
char *hex_dst_string, char *hex_src_string )
|
2016-06-09 23:22:58 +02:00
|
|
|
{
|
2018-04-28 18:26:25 +02:00
|
|
|
enum { AES_BLOCK_SIZE = 16 };
|
|
|
|
unsigned char *data_unit = NULL;
|
|
|
|
unsigned char *key = NULL;
|
|
|
|
unsigned char *src = NULL;
|
|
|
|
unsigned char *dst = NULL;
|
|
|
|
unsigned char *output = NULL;
|
2018-05-29 19:55:17 +02:00
|
|
|
mbedtls_aes_xts_context ctx;
|
2018-04-28 18:26:25 +02:00
|
|
|
size_t key_len, src_len, dst_len, data_unit_len;
|
2016-06-09 23:22:58 +02:00
|
|
|
|
2018-05-29 19:55:17 +02:00
|
|
|
mbedtls_aes_xts_init( &ctx );
|
2016-06-09 23:22:58 +02:00
|
|
|
|
2020-06-10 10:57:28 +02:00
|
|
|
data_unit = mbedtls_test_unhexify_alloc( hex_data_unit_string,
|
|
|
|
&data_unit_len );
|
2018-04-28 18:26:25 +02:00
|
|
|
TEST_ASSERT( data_unit_len == AES_BLOCK_SIZE );
|
2016-06-09 23:22:58 +02:00
|
|
|
|
2020-06-10 10:53:11 +02:00
|
|
|
key = mbedtls_test_unhexify_alloc( hex_key_string, &key_len );
|
2018-04-28 18:26:25 +02:00
|
|
|
TEST_ASSERT( key_len % 2 == 0 );
|
2016-06-09 23:22:58 +02:00
|
|
|
|
2020-06-10 10:53:11 +02:00
|
|
|
src = mbedtls_test_unhexify_alloc( hex_src_string, &src_len );
|
|
|
|
dst = mbedtls_test_unhexify_alloc( hex_dst_string, &dst_len );
|
2018-04-28 18:26:25 +02:00
|
|
|
TEST_ASSERT( src_len == dst_len );
|
2016-06-09 23:22:58 +02:00
|
|
|
|
2020-06-10 10:42:18 +02:00
|
|
|
output = mbedtls_test_zero_alloc( dst_len );
|
2018-04-28 18:26:25 +02:00
|
|
|
|
|
|
|
TEST_ASSERT( mbedtls_aes_xts_setkey_dec( &ctx, key, key_len * 8 ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_DECRYPT, src_len,
|
|
|
|
data_unit, src, output ) == 0 );
|
|
|
|
|
|
|
|
TEST_ASSERT( memcmp( output, dst, dst_len ) == 0 );
|
2016-06-09 23:22:58 +02:00
|
|
|
|
|
|
|
exit:
|
2018-05-29 19:55:17 +02:00
|
|
|
mbedtls_aes_xts_free( &ctx );
|
2018-04-28 18:26:25 +02:00
|
|
|
mbedtls_free( data_unit );
|
|
|
|
mbedtls_free( key );
|
|
|
|
mbedtls_free( src );
|
|
|
|
mbedtls_free( dst );
|
|
|
|
mbedtls_free( output );
|
2016-06-09 23:22:58 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-04-28 18:26:25 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_XTS */
|
|
|
|
void aes_crypt_xts_size( int size, int retval )
|
|
|
|
{
|
|
|
|
mbedtls_aes_xts_context ctx;
|
2019-01-31 14:20:20 +01:00
|
|
|
const unsigned char src[16] = { 0 };
|
|
|
|
unsigned char output[16];
|
2018-04-28 18:26:25 +02:00
|
|
|
unsigned char data_unit[16];
|
|
|
|
size_t length = size;
|
|
|
|
|
|
|
|
mbedtls_aes_xts_init( &ctx );
|
|
|
|
memset( data_unit, 0x00, sizeof( data_unit ) );
|
|
|
|
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, length, data_unit, src, output ) == retval );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-05-31 11:40:34 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_XTS */
|
|
|
|
void aes_crypt_xts_keysize( int size, int retval )
|
|
|
|
{
|
|
|
|
mbedtls_aes_xts_context ctx;
|
2019-01-31 14:20:20 +01:00
|
|
|
const unsigned char key[] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 };
|
2018-05-31 11:40:34 +02:00
|
|
|
size_t key_len = size;
|
|
|
|
|
|
|
|
mbedtls_aes_xts_init( &ctx );
|
|
|
|
|
|
|
|
TEST_ASSERT( mbedtls_aes_xts_setkey_enc( &ctx, key, key_len * 8 ) == retval );
|
|
|
|
TEST_ASSERT( mbedtls_aes_xts_setkey_dec( &ctx, key, key_len * 8 ) == retval );
|
|
|
|
exit:
|
|
|
|
mbedtls_aes_xts_free( &ctx );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
2018-04-28 18:26:25 +02:00
|
|
|
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CFB */
|
2018-06-29 12:05:32 +02:00
|
|
|
void aes_encrypt_cfb128( data_t * key_str, data_t * iv_str,
|
2020-06-26 14:33:03 +02:00
|
|
|
data_t * src_str, data_t * dst )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_context ctx;
|
2011-06-09 15:55:44 +02:00
|
|
|
size_t iv_offset = 0;
|
2009-06-28 23:50:27 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_init( &ctx );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_aes_setkey_enc( &ctx, key_str->x, key_str->len * 8 );
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_cfb128( &ctx, MBEDTLS_AES_ENCRYPT, 16, &iv_offset, iv_str->x, src_str->x, output ) == 0 );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2020-06-26 14:33:03 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 16, dst->len ) == 0 );
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_free( &ctx );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CFB */
|
2018-06-29 12:05:32 +02:00
|
|
|
void aes_decrypt_cfb128( data_t * key_str, data_t * iv_str,
|
2020-06-26 14:33:03 +02:00
|
|
|
data_t * src_str, data_t * dst )
|
2009-06-28 23:50:27 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_context ctx;
|
2011-06-09 15:55:44 +02:00
|
|
|
size_t iv_offset = 0;
|
2009-06-28 23:50:27 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_init( &ctx );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_aes_setkey_enc( &ctx, key_str->x, key_str->len * 8 );
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_cfb128( &ctx, MBEDTLS_AES_DECRYPT, 16, &iv_offset, iv_str->x, src_str->x, output ) == 0 );
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2020-06-26 14:33:03 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 16, dst->len ) == 0 );
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_free( &ctx );
|
2009-06-28 23:50:27 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CFB */
|
2018-06-29 12:05:32 +02:00
|
|
|
void aes_encrypt_cfb8( data_t * key_str, data_t * iv_str,
|
2020-06-26 14:33:03 +02:00
|
|
|
data_t * src_str, data_t * dst )
|
2014-01-24 15:38:12 +01:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_context ctx;
|
2014-01-24 15:38:12 +01:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_init( &ctx );
|
2014-01-24 15:38:12 +01:00
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_aes_setkey_enc( &ctx, key_str->x, key_str->len * 8 );
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_cfb8( &ctx, MBEDTLS_AES_ENCRYPT, src_str->len, iv_str->x, src_str->x, output ) == 0 );
|
2014-01-24 15:38:12 +01:00
|
|
|
|
2020-06-26 14:33:03 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x,
|
|
|
|
src_str->len, dst->len ) == 0 );
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_free( &ctx );
|
2014-01-24 15:38:12 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CFB */
|
2018-06-29 12:05:32 +02:00
|
|
|
void aes_decrypt_cfb8( data_t * key_str, data_t * iv_str,
|
2020-06-26 14:33:03 +02:00
|
|
|
data_t * src_str, data_t * dst )
|
2014-01-24 15:38:12 +01:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_context ctx;
|
2014-01-24 15:38:12 +01:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_init( &ctx );
|
2014-01-24 15:38:12 +01:00
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_aes_setkey_enc( &ctx, key_str->x, key_str->len * 8 );
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_cfb8( &ctx, MBEDTLS_AES_DECRYPT, src_str->len, iv_str->x, src_str->x, output ) == 0 );
|
2014-01-24 15:38:12 +01:00
|
|
|
|
2020-06-26 14:33:03 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x,
|
|
|
|
src_str->len, dst->len ) == 0 );
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_aes_free( &ctx );
|
2014-01-24 15:38:12 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2018-04-22 23:57:58 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_OFB */
|
2020-06-25 09:03:34 +02:00
|
|
|
void aes_encrypt_ofb( int fragment_size, data_t *key_str,
|
|
|
|
data_t *iv_str, data_t *src_str,
|
2020-06-26 17:00:30 +02:00
|
|
|
data_t *expected_output )
|
2018-04-22 23:57:58 +02:00
|
|
|
{
|
2018-06-02 19:28:32 +02:00
|
|
|
unsigned char output[32];
|
2018-04-22 23:57:58 +02:00
|
|
|
mbedtls_aes_context ctx;
|
|
|
|
size_t iv_offset = 0;
|
|
|
|
int in_buffer_len;
|
|
|
|
unsigned char* src_str_next;
|
|
|
|
|
2018-06-02 19:36:49 +02:00
|
|
|
memset( output, 0x00, sizeof( output ) );
|
2018-04-22 23:57:58 +02:00
|
|
|
mbedtls_aes_init( &ctx );
|
|
|
|
|
2020-06-25 13:57:05 +02:00
|
|
|
TEST_ASSERT( (size_t)fragment_size < sizeof( output ) );
|
2018-06-02 19:28:32 +02:00
|
|
|
|
2020-06-25 09:03:34 +02:00
|
|
|
TEST_ASSERT( mbedtls_aes_setkey_enc( &ctx, key_str->x,
|
|
|
|
key_str->len * 8 ) == 0 );
|
|
|
|
in_buffer_len = src_str->len;
|
|
|
|
src_str_next = src_str->x;
|
2018-04-22 23:57:58 +02:00
|
|
|
|
|
|
|
while( in_buffer_len > 0 )
|
|
|
|
{
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_ofb( &ctx, fragment_size, &iv_offset,
|
2020-06-25 09:03:34 +02:00
|
|
|
iv_str->x, src_str_next, output ) == 0 );
|
2018-04-22 23:57:58 +02:00
|
|
|
|
2020-06-26 17:00:30 +02:00
|
|
|
TEST_ASSERT( memcmp( output, expected_output->x, fragment_size ) == 0 );
|
2018-04-22 23:57:58 +02:00
|
|
|
|
|
|
|
in_buffer_len -= fragment_size;
|
2020-06-26 17:00:30 +02:00
|
|
|
expected_output->x += fragment_size;
|
2018-04-22 23:57:58 +02:00
|
|
|
src_str_next += fragment_size;
|
|
|
|
|
|
|
|
if( in_buffer_len < fragment_size )
|
|
|
|
fragment_size = in_buffer_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_aes_free( &ctx );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2021-05-25 15:15:57 +02:00
|
|
|
/* BEGIN_CASE depends_on:NOT_DEFINED */
|
2021-05-21 08:50:00 +02:00
|
|
|
void aes_invalid_mode( )
|
2019-01-31 14:20:20 +01:00
|
|
|
{
|
|
|
|
mbedtls_aes_context aes_ctx;
|
|
|
|
const unsigned char in[16] = { 0 };
|
|
|
|
unsigned char out[16];
|
|
|
|
const int invalid_mode = 42;
|
|
|
|
|
2021-05-21 08:50:00 +02:00
|
|
|
TEST_EQUAL( MBEDTLS_ERR_AES_BAD_INPUT_DATA,
|
|
|
|
mbedtls_aes_crypt_ecb( &aes_ctx, invalid_mode, in, out ) );
|
2019-01-31 14:20:20 +01:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_CBC)
|
2021-05-21 08:50:00 +02:00
|
|
|
TEST_EQUAL( MBEDTLS_ERR_AES_BAD_INPUT_DATA,
|
|
|
|
mbedtls_aes_crypt_cbc( &aes_ctx, invalid_mode, 16,
|
|
|
|
out, in, out ) );
|
2019-01-31 14:20:20 +01:00
|
|
|
#endif /* MBEDTLS_CIPHER_MODE_CBC */
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_XTS)
|
2021-05-21 08:50:00 +02:00
|
|
|
mbedtls_aes_xts_context xts_ctx;
|
|
|
|
|
|
|
|
TEST_EQUAL( MBEDTLS_ERR_AES_BAD_INPUT_DATA,
|
|
|
|
mbedtls_aes_crypt_xts( &xts_ctx, invalid_mode, 16,
|
|
|
|
in, in, out ) );
|
2019-01-31 14:20:20 +01:00
|
|
|
#endif /* MBEDTLS_CIPHER_MODE_XTS */
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_CFB)
|
2021-05-21 08:50:00 +02:00
|
|
|
size_t size;
|
2019-01-31 14:20:20 +01:00
|
|
|
|
2021-05-21 08:50:00 +02:00
|
|
|
TEST_EQUAL( MBEDTLS_ERR_AES_BAD_INPUT_DATA,
|
|
|
|
mbedtls_aes_crypt_cfb128( &aes_ctx, invalid_mode, 16,
|
|
|
|
&size, out, in, out ) );
|
|
|
|
TEST_EQUAL( MBEDTLS_ERR_AES_BAD_INPUT_DATA,
|
|
|
|
mbedtls_aes_crypt_cfb8( &aes_ctx, invalid_mode, 16,
|
|
|
|
out, in, out ) );
|
|
|
|
#endif /* MBEDTLS_CIPHER_MODE_CFB */
|
2019-01-31 14:20:20 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void aes_misc_params( )
|
|
|
|
{
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_CBC) || \
|
|
|
|
defined(MBEDTLS_CIPHER_MODE_XTS) || \
|
|
|
|
defined(MBEDTLS_CIPHER_MODE_CFB) || \
|
|
|
|
defined(MBEDTLS_CIPHER_MODE_OFB)
|
|
|
|
mbedtls_aes_context aes_ctx;
|
|
|
|
const unsigned char in[16] = { 0 };
|
|
|
|
unsigned char out[16];
|
|
|
|
#endif
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_XTS)
|
|
|
|
mbedtls_aes_xts_context xts_ctx;
|
|
|
|
#endif
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_CFB) || \
|
|
|
|
defined(MBEDTLS_CIPHER_MODE_OFB)
|
|
|
|
size_t size;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_CBC)
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_cbc( &aes_ctx, MBEDTLS_AES_ENCRYPT,
|
|
|
|
15,
|
|
|
|
out, in, out )
|
|
|
|
== MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH );
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_cbc( &aes_ctx, MBEDTLS_AES_ENCRYPT,
|
|
|
|
17,
|
|
|
|
out, in, out )
|
|
|
|
== MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_XTS)
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_xts( &xts_ctx, MBEDTLS_AES_ENCRYPT,
|
|
|
|
15,
|
|
|
|
in, in, out )
|
|
|
|
== MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH );
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_xts( &xts_ctx, MBEDTLS_AES_ENCRYPT,
|
|
|
|
(1 << 24) + 1,
|
|
|
|
in, in, out )
|
|
|
|
== MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_CFB)
|
|
|
|
size = 16;
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_cfb128( &aes_ctx, MBEDTLS_AES_ENCRYPT, 16,
|
|
|
|
&size, out, in, out )
|
|
|
|
== MBEDTLS_ERR_AES_BAD_INPUT_DATA );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_OFB)
|
|
|
|
size = 16;
|
|
|
|
TEST_ASSERT( mbedtls_aes_crypt_ofb( &aes_ctx, 16, &size, out, in, out )
|
|
|
|
== MBEDTLS_ERR_AES_BAD_INPUT_DATA );
|
|
|
|
#endif
|
2021-05-28 12:58:46 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The following line needs to be added to make the code compilable
|
|
|
|
* when all the conditions above will be not define in a specific
|
|
|
|
* choice of features.
|
|
|
|
*/
|
|
|
|
TEST_ASSERT( 1 );
|
|
|
|
/* TODO: It will be removed when the whole test will be reworked */
|
2019-01-31 14:20:20 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_SELF_TEST */
|
2017-05-30 15:23:15 +02:00
|
|
|
void aes_selftest( )
|
2009-07-05 13:29:38 +02:00
|
|
|
{
|
2016-09-09 10:10:28 +02:00
|
|
|
TEST_ASSERT( mbedtls_aes_self_test( 1 ) == 0 );
|
2009-07-05 13:29:38 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|