2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_HEADER */
|
2015-03-09 17:05:11 +00:00
|
|
|
#include "mbedtls/camellia.h"
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_HEADER */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_DEPENDENCIES
|
2015-04-08 10:49:31 +00:00
|
|
|
* depends_on:MBEDTLS_CAMELLIA_C
|
2013-08-20 09:48:36 +00:00
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
2011-05-26 13:16:06 +00:00
|
|
|
|
2021-05-25 13:15:57 +00:00
|
|
|
/* BEGIN_CASE depends_on:NOT_DEFINED */
|
2019-01-31 13:20:20 +00:00
|
|
|
void camellia_invalid_param( )
|
|
|
|
{
|
|
|
|
mbedtls_camellia_context ctx;
|
|
|
|
unsigned char buf[16] = { 0 };
|
|
|
|
const int invalid_mode = 42;
|
|
|
|
size_t off;
|
|
|
|
((void) off);
|
|
|
|
|
2021-05-21 06:50:00 +00:00
|
|
|
TEST_EQUAL( MBEDTLS_ERR_CAMELLIA_BAD_INPUT_DATA,
|
2019-01-31 13:20:20 +00:00
|
|
|
mbedtls_camellia_crypt_ecb( &ctx,
|
|
|
|
invalid_mode,
|
|
|
|
buf, buf ) );
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_CBC)
|
2021-05-21 06:50:00 +00:00
|
|
|
TEST_EQUAL( MBEDTLS_ERR_CAMELLIA_BAD_INPUT_DATA,
|
2019-01-31 13:20:20 +00:00
|
|
|
mbedtls_camellia_crypt_cbc( &ctx,
|
|
|
|
invalid_mode,
|
|
|
|
sizeof( buf ),
|
|
|
|
buf, buf, buf ) );
|
|
|
|
#endif /* MBEDTLS_CIPHER_MODE_CBC */
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_CFB)
|
2021-05-21 06:50:00 +00:00
|
|
|
TEST_EQUAL( MBEDTLS_ERR_CAMELLIA_BAD_INPUT_DATA,
|
2019-01-31 13:20:20 +00:00
|
|
|
mbedtls_camellia_crypt_cfb128( &ctx,
|
|
|
|
invalid_mode,
|
|
|
|
sizeof( buf ),
|
|
|
|
&off, buf,
|
|
|
|
buf, buf ) );
|
|
|
|
#endif /* MBEDTLS_CIPHER_MODE_CFB */
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE */
|
2018-06-29 10:05:32 +00:00
|
|
|
void camellia_encrypt_ecb( data_t * key_str, data_t * src_str,
|
2020-06-26 12:33:03 +00:00
|
|
|
data_t * dst, int setkey_result )
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_context ctx;
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_init( &ctx );
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
|
2017-06-09 03:32:58 +00:00
|
|
|
TEST_ASSERT( mbedtls_camellia_setkey_enc( &ctx, key_str->x, key_str->len * 8 ) == setkey_result );
|
2013-08-20 09:48:36 +00:00
|
|
|
if( setkey_result == 0 )
|
2009-07-27 21:03:45 +00:00
|
|
|
{
|
2017-06-09 03:32:58 +00:00
|
|
|
TEST_ASSERT( mbedtls_camellia_crypt_ecb( &ctx, MBEDTLS_CAMELLIA_ENCRYPT, src_str->x, output ) == 0 );
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2020-06-26 12:33:03 +00:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 16, dst->len ) == 0 );
|
2009-07-27 21:03:45 +00:00
|
|
|
}
|
2014-06-18 09:16:11 +00:00
|
|
|
|
2014-07-10 13:26:12 +00:00
|
|
|
exit:
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_free( &ctx );
|
2009-07-06 06:40:23 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE */
|
2018-06-29 10:05:32 +00:00
|
|
|
void camellia_decrypt_ecb( data_t * key_str, data_t * src_str,
|
2020-06-26 12:33:03 +00:00
|
|
|
data_t * dst, int setkey_result )
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_context ctx;
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_init( &ctx );
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
|
2017-06-09 03:32:58 +00:00
|
|
|
TEST_ASSERT( mbedtls_camellia_setkey_dec( &ctx, key_str->x, key_str->len * 8 ) == setkey_result );
|
2013-08-20 09:48:36 +00:00
|
|
|
if( setkey_result == 0 )
|
2009-07-27 21:03:45 +00:00
|
|
|
{
|
2017-06-09 03:32:58 +00:00
|
|
|
TEST_ASSERT( mbedtls_camellia_crypt_ecb( &ctx, MBEDTLS_CAMELLIA_DECRYPT, src_str->x, output ) == 0 );
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2020-06-26 12:33:03 +00:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 16, dst->len ) == 0 );
|
2009-07-27 21:03:45 +00:00
|
|
|
}
|
2014-06-18 09:16:11 +00:00
|
|
|
|
2014-07-10 13:26:12 +00:00
|
|
|
exit:
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_free( &ctx );
|
2009-07-06 06:40:23 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CBC */
|
2018-06-29 10:05:32 +00:00
|
|
|
void camellia_encrypt_cbc( data_t * key_str, data_t * iv_str,
|
2020-06-26 12:33:03 +00:00
|
|
|
data_t * src_str, data_t * dst, int cbc_result )
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_context ctx;
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_init( &ctx );
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
|
2017-06-09 03:32:58 +00:00
|
|
|
mbedtls_camellia_setkey_enc( &ctx, key_str->x, key_str->len * 8 );
|
|
|
|
TEST_ASSERT( mbedtls_camellia_crypt_cbc( &ctx, MBEDTLS_CAMELLIA_ENCRYPT, src_str->len, iv_str->x, src_str->x, output) == cbc_result );
|
2013-08-20 09:48:36 +00:00
|
|
|
if( cbc_result == 0 )
|
2010-03-18 21:21:02 +00:00
|
|
|
{
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2020-06-26 12:33:03 +00:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, src_str->len,
|
|
|
|
dst->len ) == 0 );
|
2010-03-18 21:21:02 +00:00
|
|
|
}
|
2014-06-18 09:16:11 +00:00
|
|
|
|
2014-07-10 13:26:12 +00:00
|
|
|
exit:
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_free( &ctx );
|
2009-07-06 06:40:23 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CBC */
|
2018-06-29 10:05:32 +00:00
|
|
|
void camellia_decrypt_cbc( data_t * key_str, data_t * iv_str,
|
2020-06-26 12:33:03 +00:00
|
|
|
data_t * src_str, data_t * dst,
|
2017-06-09 03:32:58 +00:00
|
|
|
int cbc_result )
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_context ctx;
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_init( &ctx );
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
|
2017-06-09 03:32:58 +00:00
|
|
|
mbedtls_camellia_setkey_dec( &ctx, key_str->x, key_str->len * 8 );
|
|
|
|
TEST_ASSERT( mbedtls_camellia_crypt_cbc( &ctx, MBEDTLS_CAMELLIA_DECRYPT, src_str->len, iv_str->x, src_str->x, output ) == cbc_result );
|
2013-08-20 09:48:36 +00:00
|
|
|
if( cbc_result == 0 )
|
2010-03-18 21:21:02 +00:00
|
|
|
{
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2020-06-26 12:33:03 +00:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, src_str->len,
|
|
|
|
dst->len ) == 0 );
|
2010-03-18 21:21:02 +00:00
|
|
|
}
|
2014-06-18 09:16:11 +00:00
|
|
|
|
2014-07-10 13:26:12 +00:00
|
|
|
exit:
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_free( &ctx );
|
2009-07-06 06:40:23 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CFB */
|
2018-06-29 10:05:32 +00:00
|
|
|
void camellia_encrypt_cfb128( data_t * key_str, data_t * iv_str,
|
2020-06-26 12:33:03 +00:00
|
|
|
data_t * src_str, data_t * dst )
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_context ctx;
|
2011-06-09 14:14:58 +00:00
|
|
|
size_t iv_offset = 0;
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_init( &ctx );
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
|
2017-06-09 03:32:58 +00:00
|
|
|
mbedtls_camellia_setkey_enc( &ctx, key_str->x, key_str->len * 8 );
|
|
|
|
TEST_ASSERT( mbedtls_camellia_crypt_cfb128( &ctx, MBEDTLS_CAMELLIA_ENCRYPT, 16, &iv_offset, iv_str->x, src_str->x, output ) == 0 );
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2020-06-26 12:33:03 +00:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 16, dst->len ) == 0 );
|
2014-06-18 09:16:11 +00:00
|
|
|
|
2014-07-10 13:26:12 +00:00
|
|
|
exit:
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_free( &ctx );
|
2009-07-06 06:40:23 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CFB */
|
2018-06-29 10:05:32 +00:00
|
|
|
void camellia_decrypt_cfb128( data_t * key_str, data_t * iv_str,
|
|
|
|
data_t * src_str,
|
2020-06-26 12:33:03 +00:00
|
|
|
data_t * dst )
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_context ctx;
|
2011-06-09 14:14:58 +00:00
|
|
|
size_t iv_offset = 0;
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_init( &ctx );
|
2009-07-06 06:40:23 +00:00
|
|
|
|
|
|
|
|
2017-06-09 03:32:58 +00:00
|
|
|
mbedtls_camellia_setkey_enc( &ctx, key_str->x, key_str->len * 8 );
|
|
|
|
TEST_ASSERT( mbedtls_camellia_crypt_cfb128( &ctx, MBEDTLS_CAMELLIA_DECRYPT, 16, &iv_offset, iv_str->x, src_str->x, output ) == 0 );
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2020-06-26 12:33:03 +00:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 16, dst->len ) == 0 );
|
2014-06-18 09:16:11 +00:00
|
|
|
|
2014-07-10 13:26:12 +00:00
|
|
|
exit:
|
2015-04-08 10:49:31 +00:00
|
|
|
mbedtls_camellia_free( &ctx );
|
2009-07-06 06:40:23 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|
2009-07-06 06:40:23 +00:00
|
|
|
|
2015-04-08 10:49:31 +00:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_SELF_TEST */
|
2017-05-30 13:23:15 +00:00
|
|
|
void camellia_selftest( )
|
2009-07-06 06:40:23 +00:00
|
|
|
{
|
2016-09-09 08:10:28 +00:00
|
|
|
TEST_ASSERT( mbedtls_camellia_self_test( 1 ) == 0 );
|
2009-07-06 06:40:23 +00:00
|
|
|
}
|
2013-08-20 09:48:36 +00:00
|
|
|
/* END_CASE */
|