The Great Renaming

A simple execution of tmp/invoke-rename.pl
This commit is contained in:
Manuel Pégourié-Gonnard 2015-04-08 12:49:31 +02:00
parent b5904d25ef
commit 2cf5a7c98e
291 changed files with 36012 additions and 36012 deletions

View file

@ -3,7 +3,7 @@
/* END_HEADER */
/* BEGIN_DEPENDENCIES
* depends_on:POLARSSL_XTEA_C
* depends_on:MBEDTLS_XTEA_C
* END_DEPENDENCIES
*/
@ -15,7 +15,7 @@ void xtea_encrypt_ecb( char *hex_key_string, char *hex_src_string,
unsigned char src_str[100];
unsigned char dst_str[100];
unsigned char output[100];
xtea_context ctx;
mbedtls_xtea_context ctx;
memset(key_str, 0x00, 100);
memset(src_str, 0x00, 100);
@ -25,8 +25,8 @@ void xtea_encrypt_ecb( char *hex_key_string, char *hex_src_string,
unhexify( key_str, hex_key_string );
unhexify( src_str, hex_src_string );
xtea_setup( &ctx, key_str );
TEST_ASSERT( xtea_crypt_ecb( &ctx, XTEA_ENCRYPT, src_str, output ) == 0 );
mbedtls_xtea_setup( &ctx, key_str );
TEST_ASSERT( mbedtls_xtea_crypt_ecb( &ctx, MBEDTLS_XTEA_ENCRYPT, src_str, output ) == 0 );
hexify( dst_str, output, 8 );
TEST_ASSERT( strcmp( (char *) dst_str, hex_dst_string ) == 0 );
@ -41,7 +41,7 @@ void xtea_decrypt_ecb( char *hex_key_string, char *hex_src_string,
unsigned char src_str[100];
unsigned char dst_str[100];
unsigned char output[100];
xtea_context ctx;
mbedtls_xtea_context ctx;
memset(key_str, 0x00, 100);
memset(src_str, 0x00, 100);
@ -51,8 +51,8 @@ void xtea_decrypt_ecb( char *hex_key_string, char *hex_src_string,
unhexify( key_str, hex_key_string );
unhexify( src_str, hex_src_string );
xtea_setup( &ctx, key_str );
TEST_ASSERT( xtea_crypt_ecb( &ctx, XTEA_DECRYPT, src_str, output ) == 0 );
mbedtls_xtea_setup( &ctx, key_str );
TEST_ASSERT( mbedtls_xtea_crypt_ecb( &ctx, MBEDTLS_XTEA_DECRYPT, src_str, output ) == 0 );
hexify( dst_str, output, 8 );
TEST_ASSERT( strcmp( (char *) dst_str, hex_dst_string ) == 0 );
@ -69,7 +69,7 @@ void xtea_encrypt_cbc( char *hex_key_string, char *hex_iv_string,
unsigned char iv_str[100];
unsigned char output[100];
size_t len;
xtea_context ctx;
mbedtls_xtea_context ctx;
memset(key_str, 0x00, 100);
memset(src_str, 0x00, 100);
@ -81,8 +81,8 @@ void xtea_encrypt_cbc( char *hex_key_string, char *hex_iv_string,
unhexify( iv_str, hex_iv_string );
len = unhexify( src_str, hex_src_string );
xtea_setup( &ctx, key_str );
TEST_ASSERT( xtea_crypt_cbc( &ctx, XTEA_ENCRYPT, len, iv_str,
mbedtls_xtea_setup( &ctx, key_str );
TEST_ASSERT( mbedtls_xtea_crypt_cbc( &ctx, MBEDTLS_XTEA_ENCRYPT, len, iv_str,
src_str, output ) == 0 );
hexify( dst_str, output, len );
@ -100,7 +100,7 @@ void xtea_decrypt_cbc( char *hex_key_string, char *hex_iv_string,
unsigned char iv_str[100];
unsigned char output[100];
size_t len;
xtea_context ctx;
mbedtls_xtea_context ctx;
memset(key_str, 0x00, 100);
memset(src_str, 0x00, 100);
@ -112,8 +112,8 @@ void xtea_decrypt_cbc( char *hex_key_string, char *hex_iv_string,
unhexify( iv_str, hex_iv_string );
len = unhexify( src_str, hex_src_string );
xtea_setup( &ctx, key_str );
TEST_ASSERT( xtea_crypt_cbc( &ctx, XTEA_DECRYPT, len, iv_str,
mbedtls_xtea_setup( &ctx, key_str );
TEST_ASSERT( mbedtls_xtea_crypt_cbc( &ctx, MBEDTLS_XTEA_DECRYPT, len, iv_str,
src_str, output ) == 0 );
hexify( dst_str, output, len );
@ -121,9 +121,9 @@ void xtea_decrypt_cbc( char *hex_key_string, char *hex_iv_string,
}
/* END_CASE */
/* BEGIN_CASE depends_on:POLARSSL_SELF_TEST */
/* BEGIN_CASE depends_on:MBEDTLS_SELF_TEST */
void xtea_selftest()
{
TEST_ASSERT( xtea_self_test( 0 ) == 0 );
TEST_ASSERT( mbedtls_xtea_self_test( 0 ) == 0 );
}
/* END_CASE */