2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_HEADER */
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/des.h"
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_HEADER */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_DEPENDENCIES
|
2015-04-08 12:49:31 +02:00
|
|
|
* depends_on:MBEDTLS_DES_C
|
2013-08-20 11:48:36 +02:00
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
2011-05-26 15:16:06 +02:00
|
|
|
|
2014-03-29 17:06:43 +01:00
|
|
|
/* BEGIN_CASE */
|
2018-06-29 12:05:32 +02:00
|
|
|
void des_check_weak( data_t * key, int ret )
|
2014-03-29 17:06:43 +01:00
|
|
|
{
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( mbedtls_des_key_check_weak( key->x ) == ret );
|
2014-03-29 17:06:43 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-29 12:05:32 +02:00
|
|
|
void des_encrypt_ecb( data_t * key_str, data_t * src_str,
|
|
|
|
data_t * hex_dst_string )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des_context ctx;
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des_init( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_des_setkey_enc( &ctx, key_str->x );
|
|
|
|
TEST_ASSERT( mbedtls_des_crypt_ecb( &ctx, src_str->x, output ) == 0 );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2020-06-10 11:42:32 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, hex_dst_string->x,
|
|
|
|
8, hex_dst_string->len ) == 0 );
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des_free( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-29 12:05:32 +02:00
|
|
|
void des_decrypt_ecb( data_t * key_str, data_t * src_str,
|
|
|
|
data_t * hex_dst_string )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des_context ctx;
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des_init( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_des_setkey_dec( &ctx, key_str->x );
|
|
|
|
TEST_ASSERT( mbedtls_des_crypt_ecb( &ctx, src_str->x, output ) == 0 );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2020-06-10 11:42:32 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, hex_dst_string->x,
|
|
|
|
8, hex_dst_string->len ) == 0 );
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des_free( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CBC */
|
2018-06-29 12:05:32 +02:00
|
|
|
void des_encrypt_cbc( data_t * key_str, data_t * iv_str,
|
|
|
|
data_t * src_str, data_t * hex_dst_string,
|
2017-05-30 15:23:15 +02:00
|
|
|
int cbc_result )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des_context ctx;
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des_init( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_des_setkey_enc( &ctx, key_str->x );
|
|
|
|
TEST_ASSERT( mbedtls_des_crypt_cbc( &ctx, MBEDTLS_DES_ENCRYPT, src_str->len, iv_str->x, src_str->x, output ) == cbc_result );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( cbc_result == 0 )
|
2010-03-18 22:21:02 +01:00
|
|
|
{
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2020-06-10 11:42:32 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, hex_dst_string->x,
|
|
|
|
src_str->len,
|
|
|
|
hex_dst_string->len ) == 0 );
|
2010-03-18 22:21:02 +01:00
|
|
|
}
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des_free( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CBC */
|
2018-06-29 12:05:32 +02:00
|
|
|
void des_decrypt_cbc( data_t * key_str, data_t * iv_str,
|
|
|
|
data_t * src_str, data_t * hex_dst_string,
|
2017-05-30 15:23:15 +02:00
|
|
|
int cbc_result )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des_context ctx;
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des_init( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_des_setkey_dec( &ctx, key_str->x );
|
|
|
|
TEST_ASSERT( mbedtls_des_crypt_cbc( &ctx, MBEDTLS_DES_DECRYPT, src_str->len, iv_str->x, src_str->x, output ) == cbc_result );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( cbc_result == 0 )
|
2010-03-18 22:21:02 +01:00
|
|
|
{
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2020-06-10 11:42:32 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, hex_dst_string->x,
|
|
|
|
src_str->len,
|
|
|
|
hex_dst_string->len ) == 0 );
|
2010-03-18 22:21:02 +01:00
|
|
|
}
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des_free( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-29 12:05:32 +02:00
|
|
|
void des3_encrypt_ecb( int key_count, data_t * key_str,
|
|
|
|
data_t * src_str, data_t * hex_dst_string )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des3_context ctx;
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des3_init( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
if( key_count == 2 )
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_des3_set2key_enc( &ctx, key_str->x );
|
2013-08-20 11:48:36 +02:00
|
|
|
else if( key_count == 3 )
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_des3_set3key_enc( &ctx, key_str->x );
|
2009-07-06 08:40:23 +02:00
|
|
|
else
|
|
|
|
TEST_ASSERT( 0 );
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( mbedtls_des3_crypt_ecb( &ctx, src_str->x, output ) == 0 );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2020-06-10 11:42:32 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, hex_dst_string->x,
|
|
|
|
8, hex_dst_string->len ) == 0 );
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des3_free( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-29 12:05:32 +02:00
|
|
|
void des3_decrypt_ecb( int key_count, data_t * key_str,
|
|
|
|
data_t * src_str, data_t * hex_dst_string )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des3_context ctx;
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des3_init( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
if( key_count == 2 )
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_des3_set2key_dec( &ctx, key_str->x );
|
2013-08-20 11:48:36 +02:00
|
|
|
else if( key_count == 3 )
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_des3_set3key_dec( &ctx, key_str->x );
|
2009-07-06 08:40:23 +02:00
|
|
|
else
|
|
|
|
TEST_ASSERT( 0 );
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( mbedtls_des3_crypt_ecb( &ctx, src_str->x, output ) == 0 );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2020-06-10 11:42:32 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, hex_dst_string->x,
|
|
|
|
8, hex_dst_string->len ) == 0 );
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des3_free( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CBC */
|
2018-06-29 12:05:32 +02:00
|
|
|
void des3_encrypt_cbc( int key_count, data_t * key_str,
|
|
|
|
data_t * iv_str, data_t * src_str,
|
|
|
|
data_t * hex_dst_string, int cbc_result )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des3_context ctx;
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des3_init( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
if( key_count == 2 )
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_des3_set2key_enc( &ctx, key_str->x );
|
2013-08-20 11:48:36 +02:00
|
|
|
else if( key_count == 3 )
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_des3_set3key_enc( &ctx, key_str->x );
|
2009-07-06 08:40:23 +02:00
|
|
|
else
|
|
|
|
TEST_ASSERT( 0 );
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( mbedtls_des3_crypt_cbc( &ctx, MBEDTLS_DES_ENCRYPT, src_str->len, iv_str->x, src_str->x, output ) == cbc_result );
|
2011-05-25 13:34:44 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
if( cbc_result == 0 )
|
2010-03-18 22:21:02 +01:00
|
|
|
{
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2020-06-10 11:42:32 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, hex_dst_string->x,
|
|
|
|
src_str->len,
|
|
|
|
hex_dst_string->len ) == 0 );
|
2010-03-18 22:21:02 +01:00
|
|
|
}
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des3_free( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CBC */
|
2018-06-29 12:05:32 +02:00
|
|
|
void des3_decrypt_cbc( int key_count, data_t * key_str,
|
|
|
|
data_t * iv_str, data_t * src_str,
|
|
|
|
data_t * hex_dst_string, int cbc_result )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
|
|
|
unsigned char output[100];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des3_context ctx;
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
memset(output, 0x00, 100);
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des3_init( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
if( key_count == 2 )
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_des3_set2key_dec( &ctx, key_str->x );
|
2013-08-20 11:48:36 +02:00
|
|
|
else if( key_count == 3 )
|
2017-06-09 05:32:58 +02:00
|
|
|
mbedtls_des3_set3key_dec( &ctx, key_str->x );
|
2009-07-06 08:40:23 +02:00
|
|
|
else
|
|
|
|
TEST_ASSERT( 0 );
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( mbedtls_des3_crypt_cbc( &ctx, MBEDTLS_DES_DECRYPT, src_str->len, iv_str->x, src_str->x, output ) == cbc_result );
|
2011-05-25 13:34:44 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
if( cbc_result == 0 )
|
2010-03-18 22:21:02 +01:00
|
|
|
{
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2020-06-10 11:42:32 +02:00
|
|
|
TEST_ASSERT( mbedtls_test_hexcmp( output, hex_dst_string->x,
|
|
|
|
src_str->len,
|
|
|
|
hex_dst_string->len ) == 0 );
|
2010-03-18 22:21:02 +01:00
|
|
|
}
|
2014-06-18 11:16:11 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des3_free( &ctx );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2009-07-06 08:40:23 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void des_key_parity_run( )
|
2011-01-15 18:32:24 +01:00
|
|
|
{
|
|
|
|
int i, j, cnt;
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char key[MBEDTLS_DES_KEY_SIZE];
|
2011-01-15 18:32:24 +01:00
|
|
|
unsigned int parity;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
memset( key, 0, MBEDTLS_DES_KEY_SIZE );
|
2011-01-15 18:32:24 +01:00
|
|
|
cnt = 0;
|
|
|
|
|
|
|
|
// Iterate through all possible byte values
|
|
|
|
//
|
|
|
|
for( i = 0; i < 32; i++ )
|
|
|
|
{
|
|
|
|
for( j = 0; j < 8; j++ )
|
|
|
|
key[j] = cnt++;
|
|
|
|
|
|
|
|
// Set the key parity according to the table
|
|
|
|
//
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_des_key_set_parity( key );
|
2011-01-15 18:32:24 +01:00
|
|
|
|
|
|
|
// Check the parity with a function
|
|
|
|
//
|
|
|
|
for( j = 0; j < 8; j++ )
|
|
|
|
{
|
|
|
|
parity = key[j] ^ ( key[j] >> 4 );
|
|
|
|
parity = parity ^
|
|
|
|
( parity >> 1 ) ^
|
|
|
|
( parity >> 2 ) ^
|
|
|
|
( parity >> 3 );
|
|
|
|
parity &= 1;
|
|
|
|
|
|
|
|
if( parity != 1 )
|
|
|
|
TEST_ASSERT( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the parity with the table
|
|
|
|
//
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_des_key_check_key_parity( key ) == 0 );
|
2011-01-15 18:32:24 +01:00
|
|
|
}
|
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2011-01-15 18:32:24 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_SELF_TEST */
|
2017-05-30 15:23:15 +02:00
|
|
|
void des_selftest( )
|
2009-07-06 08:40:23 +02:00
|
|
|
{
|
2016-09-09 10:10:28 +02:00
|
|
|
TEST_ASSERT( mbedtls_des_self_test( 1 ) == 0 );
|
2009-07-06 08:40:23 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|