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
|
|
|
|
2013-08-20 09:48:36 +00:00
|
|
|
/* BEGIN_CASE */
|
2017-06-09 03:32:58 +00:00
|
|
|
void camellia_encrypt_ecb( HexParam_t * key_str, HexParam_t * src_str,
|
|
|
|
HexParam_t * hex_dst_string, 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
|
|
|
|
2017-06-09 03:32:58 +00:00
|
|
|
TEST_ASSERT( hexcmp( output, hex_dst_string->x, 16, hex_dst_string->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 */
|
2017-06-09 03:32:58 +00:00
|
|
|
void camellia_decrypt_ecb( HexParam_t * key_str, HexParam_t * src_str,
|
|
|
|
HexParam_t * hex_dst_string, 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
|
|
|
|
2017-06-09 03:32:58 +00:00
|
|
|
TEST_ASSERT( hexcmp( output, hex_dst_string->x, 16, hex_dst_string->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 */
|
2017-06-09 03:32:58 +00:00
|
|
|
void camellia_encrypt_cbc( HexParam_t * key_str, HexParam_t * iv_str,
|
|
|
|
HexParam_t * src_str, HexParam_t * hex_dst_string,
|
|
|
|
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
|
|
|
|
2017-06-09 03:32:58 +00:00
|
|
|
TEST_ASSERT( hexcmp( output, hex_dst_string->x, src_str->len, hex_dst_string->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 */
|
2017-06-09 03:32:58 +00:00
|
|
|
void camellia_decrypt_cbc( HexParam_t * key_str, HexParam_t * iv_str,
|
|
|
|
HexParam_t * src_str, HexParam_t * hex_dst_string,
|
|
|
|
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
|
|
|
|
2017-06-09 03:32:58 +00:00
|
|
|
TEST_ASSERT( hexcmp( output, hex_dst_string->x, src_str->len, hex_dst_string->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 */
|
2017-06-09 03:32:58 +00:00
|
|
|
void camellia_encrypt_cfb128( HexParam_t * key_str, HexParam_t * iv_str,
|
|
|
|
HexParam_t * src_str,
|
|
|
|
HexParam_t * hex_dst_string )
|
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
|
|
|
|
2017-06-09 03:32:58 +00:00
|
|
|
TEST_ASSERT( hexcmp( output, hex_dst_string->x, 16, hex_dst_string->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 */
|
2017-06-09 03:32:58 +00:00
|
|
|
void camellia_decrypt_cfb128( HexParam_t * key_str, HexParam_t * iv_str,
|
|
|
|
HexParam_t * src_str,
|
|
|
|
HexParam_t * hex_dst_string )
|
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
|
|
|
|
2017-06-09 03:32:58 +00:00
|
|
|
TEST_ASSERT( hexcmp( output, hex_dst_string->x, 16, hex_dst_string->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 */
|