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 */
|
2018-06-29 12:05:32 +02:00
|
|
|
void xtea_encrypt_ecb( data_t * key_str, data_t * src_str,
|
2020-06-26 14:33:03 +02:00
|
|
|
data_t * dst )
|
2009-07-08 08:43:10 +02:00
|
|
|
{
|
|
|
|
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(output, 0x00, 100);
|
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_xtea_setup( &ctx, key_str->x );
|
|
|
|
TEST_ASSERT( mbedtls_xtea_crypt_ecb( &ctx, MBEDTLS_XTEA_ENCRYPT, src_str->x, output ) == 0 );
|
2009-07-08 08:43:10 +02:00
|
|
|
|
2020-06-26 14:33:03 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 8, dst->len ) == 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 */
|
2020-06-26 14:33:03 +02:00
|
|
|
void xtea_decrypt_ecb( data_t * key_str, data_t * src_str, data_t * dst )
|
2009-07-08 08:43:10 +02:00
|
|
|
{
|
|
|
|
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(output, 0x00, 100);
|
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_xtea_setup( &ctx, key_str->x );
|
|
|
|
TEST_ASSERT( mbedtls_xtea_crypt_ecb( &ctx, MBEDTLS_XTEA_DECRYPT, src_str->x, output ) == 0 );
|
2009-07-08 08:43:10 +02:00
|
|
|
|
2020-06-26 14:33:03 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x, 8, dst->len ) == 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
|
|
|
|
2016-06-23 03:41:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CBC */
|
2018-06-29 12:05:32 +02:00
|
|
|
void xtea_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 )
|
2014-05-29 18:26:53 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_xtea_context ctx;
|
2014-05-29 18:26:53 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_xtea_setup( &ctx, key_str->x );
|
|
|
|
TEST_ASSERT( mbedtls_xtea_crypt_cbc( &ctx, MBEDTLS_XTEA_ENCRYPT, src_str->len, iv_str->x,
|
|
|
|
src_str->x, output ) == 0 );
|
2014-05-29 18:26:53 +02:00
|
|
|
|
2020-06-26 14:33:03 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x,
|
|
|
|
src_str->len, dst->len ) == 0 );
|
2014-05-29 18:26:53 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2016-06-23 03:41:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CBC */
|
2018-06-29 12:05:32 +02:00
|
|
|
void xtea_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 )
|
2014-05-29 18:26:53 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_xtea_context ctx;
|
2014-05-29 18:26:53 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_xtea_setup( &ctx, key_str->x );
|
|
|
|
TEST_ASSERT( mbedtls_xtea_crypt_cbc( &ctx, MBEDTLS_XTEA_DECRYPT, src_str->len, iv_str->x,
|
|
|
|
src_str->x, output ) == 0 );
|
2014-05-29 18:26:53 +02:00
|
|
|
|
2020-06-26 14:33:03 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, dst->x,
|
|
|
|
src_str->len, dst->len ) == 0 );
|
2014-05-29 18:26:53 +02: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 xtea_selftest( )
|
2009-07-08 08:43:10 +02:00
|
|
|
{
|
2016-09-09 10:10:28 +02:00
|
|
|
TEST_ASSERT( mbedtls_xtea_self_test( 1 ) == 0 );
|
2009-07-08 08:43:10 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|