2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_HEADER */
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/xtea.h"
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_HEADER */
|
2009-07-08 08:43:10 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_DEPENDENCIES
|
2015-04-08 12:49:31 +02:00
|
|
|
* depends_on:MBEDTLS_XTEA_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 */
|
|
|
|
void xtea_encrypt_ecb( char *hex_key_string, char *hex_src_string,
|
|
|
|
char *hex_dst_string )
|
2009-07-08 08:43:10 +02:00
|
|
|
{
|
|
|
|
unsigned char key_str[100];
|
|
|
|
unsigned char src_str[100];
|
|
|
|
unsigned char dst_str[100];
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_xtea_context ctx;
|
2009-07-08 08:43:10 +02:00
|
|
|
|
|
|
|
memset(key_str, 0x00, 100);
|
|
|
|
memset(src_str, 0x00, 100);
|
|
|
|
memset(dst_str, 0x00, 100);
|
|
|
|
memset(output, 0x00, 100);
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
unhexify( key_str, hex_key_string );
|
|
|
|
unhexify( src_str, hex_src_string );
|
2009-07-08 08:43:10 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_xtea_setup( &ctx, key_str );
|
|
|
|
TEST_ASSERT( mbedtls_xtea_crypt_ecb( &ctx, MBEDTLS_XTEA_ENCRYPT, src_str, output ) == 0 );
|
2009-07-08 08:43:10 +02:00
|
|
|
hexify( dst_str, output, 8 );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( strcmp( (char *) dst_str, hex_dst_string ) == 0 );
|
2009-07-08 08:43:10 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-08 08:43:10 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void xtea_decrypt_ecb( char *hex_key_string, char *hex_src_string,
|
|
|
|
char *hex_dst_string )
|
2009-07-08 08:43:10 +02:00
|
|
|
{
|
|
|
|
unsigned char key_str[100];
|
|
|
|
unsigned char src_str[100];
|
|
|
|
unsigned char dst_str[100];
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_xtea_context ctx;
|
2009-07-08 08:43:10 +02:00
|
|
|
|
|
|
|
memset(key_str, 0x00, 100);
|
|
|
|
memset(src_str, 0x00, 100);
|
|
|
|
memset(dst_str, 0x00, 100);
|
|
|
|
memset(output, 0x00, 100);
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
unhexify( key_str, hex_key_string );
|
|
|
|
unhexify( src_str, hex_src_string );
|
2009-07-08 08:43:10 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_xtea_setup( &ctx, key_str );
|
|
|
|
TEST_ASSERT( mbedtls_xtea_crypt_ecb( &ctx, MBEDTLS_XTEA_DECRYPT, src_str, output ) == 0 );
|
2009-07-08 08:43:10 +02:00
|
|
|
hexify( dst_str, output, 8 );
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
TEST_ASSERT( strcmp( (char *) dst_str, hex_dst_string ) == 0 );
|
2009-07-08 08:43:10 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-08 08:43:10 +02:00
|
|
|
|
2014-05-29 18:26:53 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void xtea_encrypt_cbc( char *hex_key_string, char *hex_iv_string,
|
|
|
|
char *hex_src_string, char *hex_dst_string )
|
|
|
|
{
|
|
|
|
unsigned char key_str[100];
|
|
|
|
unsigned char src_str[100];
|
|
|
|
unsigned char dst_str[100];
|
|
|
|
unsigned char iv_str[100];
|
|
|
|
unsigned char output[100];
|
|
|
|
size_t len;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_xtea_context ctx;
|
2014-05-29 18:26:53 +02:00
|
|
|
|
|
|
|
memset(key_str, 0x00, 100);
|
|
|
|
memset(src_str, 0x00, 100);
|
|
|
|
memset(dst_str, 0x00, 100);
|
|
|
|
memset(iv_str, 0x00, 100);
|
|
|
|
memset(output, 0x00, 100);
|
|
|
|
|
|
|
|
unhexify( key_str, hex_key_string );
|
|
|
|
unhexify( iv_str, hex_iv_string );
|
|
|
|
len = unhexify( src_str, hex_src_string );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_xtea_setup( &ctx, key_str );
|
|
|
|
TEST_ASSERT( mbedtls_xtea_crypt_cbc( &ctx, MBEDTLS_XTEA_ENCRYPT, len, iv_str,
|
2014-05-29 18:26:53 +02:00
|
|
|
src_str, output ) == 0 );
|
|
|
|
hexify( dst_str, output, len );
|
|
|
|
|
|
|
|
TEST_ASSERT( strcmp( (char *) dst_str, hex_dst_string ) == 0 );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
|
|
|
/* BEGIN_CASE */
|
|
|
|
void xtea_decrypt_cbc( char *hex_key_string, char *hex_iv_string,
|
|
|
|
char *hex_src_string, char *hex_dst_string )
|
|
|
|
{
|
|
|
|
unsigned char key_str[100];
|
|
|
|
unsigned char src_str[100];
|
|
|
|
unsigned char dst_str[100];
|
|
|
|
unsigned char iv_str[100];
|
|
|
|
unsigned char output[100];
|
|
|
|
size_t len;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_xtea_context ctx;
|
2014-05-29 18:26:53 +02:00
|
|
|
|
|
|
|
memset(key_str, 0x00, 100);
|
|
|
|
memset(src_str, 0x00, 100);
|
|
|
|
memset(dst_str, 0x00, 100);
|
|
|
|
memset(iv_str, 0x00, 100);
|
|
|
|
memset(output, 0x00, 100);
|
|
|
|
|
|
|
|
unhexify( key_str, hex_key_string );
|
|
|
|
unhexify( iv_str, hex_iv_string );
|
|
|
|
len = unhexify( src_str, hex_src_string );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_xtea_setup( &ctx, key_str );
|
|
|
|
TEST_ASSERT( mbedtls_xtea_crypt_cbc( &ctx, MBEDTLS_XTEA_DECRYPT, len, iv_str,
|
2014-05-29 18:26:53 +02:00
|
|
|
src_str, output ) == 0 );
|
|
|
|
hexify( dst_str, output, len );
|
|
|
|
|
|
|
|
TEST_ASSERT( strcmp( (char *) dst_str, hex_dst_string ) == 0 );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_SELF_TEST */
|
2013-08-20 11:48:36 +02:00
|
|
|
void xtea_selftest()
|
2009-07-08 08:43:10 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_xtea_self_test( 0 ) == 0 );
|
2009-07-08 08:43:10 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|