2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_HEADER */
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/cipher.h"
|
2013-09-03 20:17:35 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_GCM_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/gcm.h"
|
2013-09-03 20:17:35 +02:00
|
|
|
#endif
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_HEADER */
|
2011-01-06 16:37:30 +01:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_DEPENDENCIES
|
2015-04-08 12:49:31 +02:00
|
|
|
* depends_on:MBEDTLS_CIPHER_C
|
2013-08-20 11:48:36 +02:00
|
|
|
* END_DEPENDENCIES
|
|
|
|
*/
|
2011-05-26 15:16:06 +02:00
|
|
|
|
2014-03-29 16:10:55 +01:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void mbedtls_cipher_list( )
|
2014-03-29 16:10:55 +01:00
|
|
|
{
|
|
|
|
const int *cipher_type;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
for( cipher_type = mbedtls_cipher_list(); *cipher_type != 0; cipher_type++ )
|
|
|
|
TEST_ASSERT( mbedtls_cipher_info_from_type( *cipher_type ) != NULL );
|
2014-03-29 16:10:55 +01:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2014-06-13 16:08:07 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void cipher_null_args( )
|
2014-06-13 16:08:07 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_context_t ctx;
|
|
|
|
const mbedtls_cipher_info_t *info = mbedtls_cipher_info_from_type( *( mbedtls_cipher_list() ) );
|
2014-06-13 16:08:07 +02:00
|
|
|
unsigned char buf[1] = { 0 };
|
|
|
|
size_t olen;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_init( &ctx );
|
2014-06-13 16:08:07 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_cipher_get_block_size( NULL ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_cipher_get_block_size( &ctx ) == 0 );
|
2014-06-13 16:08:07 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_cipher_get_cipher_mode( NULL ) == MBEDTLS_MODE_NONE );
|
|
|
|
TEST_ASSERT( mbedtls_cipher_get_cipher_mode( &ctx ) == MBEDTLS_MODE_NONE );
|
2014-06-13 16:08:07 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_cipher_get_iv_size( NULL ) == 0 );
|
|
|
|
TEST_ASSERT( mbedtls_cipher_get_iv_size( &ctx ) == 0 );
|
2014-06-13 16:08:07 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_cipher_info_from_string( NULL ) == NULL );
|
2014-06-13 16:08:07 +02:00
|
|
|
|
2015-05-14 13:51:45 +02:00
|
|
|
TEST_ASSERT( mbedtls_cipher_setup( &ctx, NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
2015-05-14 13:51:45 +02:00
|
|
|
TEST_ASSERT( mbedtls_cipher_setup( NULL, info )
|
2015-04-08 12:49:31 +02:00
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
2014-06-13 16:08:07 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_cipher_setkey( NULL, buf, 0, MBEDTLS_ENCRYPT )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
|
|
|
TEST_ASSERT( mbedtls_cipher_setkey( &ctx, buf, 0, MBEDTLS_ENCRYPT )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
2014-06-13 16:08:07 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_cipher_set_iv( NULL, buf, 0 )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
|
|
|
TEST_ASSERT( mbedtls_cipher_set_iv( &ctx, buf, 0 )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
2014-06-13 16:08:07 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_cipher_reset( NULL ) == MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
|
|
|
TEST_ASSERT( mbedtls_cipher_reset( &ctx ) == MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
2014-06-13 16:08:07 +02:00
|
|
|
|
2018-05-07 10:43:27 +02:00
|
|
|
#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_cipher_update_ad( NULL, buf, 0 )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
|
|
|
TEST_ASSERT( mbedtls_cipher_update_ad( &ctx, buf, 0 )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
2014-06-13 16:08:07 +02:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_cipher_update( NULL, buf, 0, buf, &olen )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
|
|
|
TEST_ASSERT( mbedtls_cipher_update( &ctx, buf, 0, buf, &olen )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
|
|
|
|
|
|
|
TEST_ASSERT( mbedtls_cipher_finish( NULL, buf, &olen )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
|
|
|
TEST_ASSERT( mbedtls_cipher_finish( &ctx, buf, &olen )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
|
|
|
|
2018-05-07 10:43:27 +02:00
|
|
|
#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_cipher_write_tag( NULL, buf, olen )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
|
|
|
TEST_ASSERT( mbedtls_cipher_write_tag( &ctx, buf, olen )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
|
|
|
|
|
|
|
TEST_ASSERT( mbedtls_cipher_check_tag( NULL, buf, olen )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
|
|
|
TEST_ASSERT( mbedtls_cipher_check_tag( &ctx, buf, olen )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
2014-06-13 16:08:07 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2016-07-14 14:46:10 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_AES_C */
|
2017-05-30 15:23:15 +02:00
|
|
|
void cipher_special_behaviours( )
|
2016-07-14 14:46:10 +02:00
|
|
|
{
|
|
|
|
const mbedtls_cipher_info_t *cipher_info;
|
|
|
|
mbedtls_cipher_context_t ctx;
|
|
|
|
unsigned char input[32];
|
|
|
|
unsigned char output[32];
|
|
|
|
unsigned char iv[32];
|
|
|
|
size_t olen = 0;
|
|
|
|
|
|
|
|
mbedtls_cipher_init( &ctx );
|
|
|
|
memset( input, 0, sizeof( input ) );
|
|
|
|
memset( output, 0, sizeof( output ) );
|
|
|
|
memset( iv, 0, sizeof( iv ) );
|
|
|
|
|
|
|
|
/* Check and get info structures */
|
|
|
|
cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_AES_128_ECB );
|
|
|
|
TEST_ASSERT( NULL != cipher_info );
|
|
|
|
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx, cipher_info ) );
|
|
|
|
|
|
|
|
/* IV too big */
|
|
|
|
TEST_ASSERT( mbedtls_cipher_set_iv( &ctx, iv, MBEDTLS_MAX_IV_LENGTH + 1 )
|
|
|
|
== MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE );
|
|
|
|
|
|
|
|
/* IV too small */
|
|
|
|
TEST_ASSERT( mbedtls_cipher_set_iv( &ctx, iv, 0 )
|
|
|
|
== MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
|
|
|
|
|
|
|
|
/* Update ECB with partial block */
|
|
|
|
TEST_ASSERT( mbedtls_cipher_update( &ctx, input, 1, output, &olen )
|
|
|
|
== MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED );
|
|
|
|
|
|
|
|
exit:
|
|
|
|
mbedtls_cipher_free( &ctx );
|
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void enc_dec_buf( int cipher_id, char * cipher_string, int key_len,
|
2013-08-20 11:48:36 +02:00
|
|
|
int length_val, int pad_mode )
|
2013-08-16 13:38:47 +02:00
|
|
|
{
|
2015-06-24 01:08:09 +02:00
|
|
|
size_t length = length_val, outlen, total_len, i, block_size;
|
2018-06-08 12:03:16 +02:00
|
|
|
unsigned char key[64];
|
2011-01-06 16:37:30 +01:00
|
|
|
unsigned char iv[16];
|
2013-08-31 17:31:03 +02:00
|
|
|
unsigned char ad[13];
|
|
|
|
unsigned char tag[16];
|
2011-01-06 16:37:30 +01:00
|
|
|
unsigned char inbuf[64];
|
|
|
|
unsigned char encbuf[64];
|
|
|
|
unsigned char decbuf[64];
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_cipher_info_t *cipher_info;
|
|
|
|
mbedtls_cipher_context_t ctx_dec;
|
|
|
|
mbedtls_cipher_context_t ctx_enc;
|
2011-01-06 16:37:30 +01:00
|
|
|
|
2013-09-05 10:30:32 +02:00
|
|
|
/*
|
|
|
|
* Prepare contexts
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_init( &ctx_dec );
|
|
|
|
mbedtls_cipher_init( &ctx_enc );
|
2013-09-05 10:30:32 +02:00
|
|
|
|
|
|
|
memset( key, 0x2a, sizeof( key ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
|
|
|
|
/* Check and get info structures */
|
2015-04-08 12:49:31 +02:00
|
|
|
cipher_info = mbedtls_cipher_info_from_type( cipher_id );
|
2011-01-06 16:37:30 +01:00
|
|
|
TEST_ASSERT( NULL != cipher_info );
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( mbedtls_cipher_info_from_string( cipher_string ) == cipher_info );
|
2011-01-06 16:37:30 +01:00
|
|
|
|
|
|
|
/* Initialise enc and dec contexts */
|
2015-05-14 13:51:45 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_dec, cipher_info ) );
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_enc, cipher_info ) );
|
2013-09-05 10:30:32 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx_dec, key, key_len, MBEDTLS_DECRYPT ) );
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx_enc, key, key_len, MBEDTLS_ENCRYPT ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_WITH_PADDING)
|
2013-08-20 11:48:36 +02:00
|
|
|
if( -1 != pad_mode )
|
2013-07-26 13:20:42 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx_dec, pad_mode ) );
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx_enc, pad_mode ) );
|
2013-07-26 13:20:42 +02:00
|
|
|
}
|
2013-09-13 14:41:45 +02:00
|
|
|
#else
|
|
|
|
(void) pad_mode;
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_CIPHER_MODE_WITH_PADDING */
|
2013-07-26 13:20:42 +02:00
|
|
|
|
2013-09-05 10:30:32 +02:00
|
|
|
/*
|
|
|
|
* Do a few encode/decode cycles
|
|
|
|
*/
|
|
|
|
for( i = 0; i < 3; i++ )
|
|
|
|
{
|
|
|
|
memset( iv , 0x00 + i, sizeof( iv ) );
|
|
|
|
memset( ad, 0x10 + i, sizeof( ad ) );
|
|
|
|
memset( inbuf, 0x20 + i, sizeof( inbuf ) );
|
|
|
|
|
|
|
|
memset( encbuf, 0, sizeof( encbuf ) );
|
|
|
|
memset( decbuf, 0, sizeof( decbuf ) );
|
|
|
|
memset( tag, 0, sizeof( tag ) );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_dec, iv, sizeof( iv ) ) );
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_enc, iv, sizeof( iv ) ) );
|
2013-09-03 13:04:44 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx_dec ) );
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx_enc ) );
|
2013-09-03 13:54:12 +02:00
|
|
|
|
2018-05-07 10:43:27 +02:00
|
|
|
#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update_ad( &ctx_dec, ad, sizeof( ad ) - i ) );
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update_ad( &ctx_enc, ad, sizeof( ad ) - i ) );
|
2014-06-24 15:26:28 +02:00
|
|
|
#endif
|
2011-01-06 16:37:30 +01:00
|
|
|
|
2015-06-24 01:08:09 +02:00
|
|
|
block_size = mbedtls_cipher_get_block_size( &ctx_enc );
|
|
|
|
TEST_ASSERT( block_size != 0 );
|
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
/* encode length number of bytes from inbuf */
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_enc, inbuf, length, encbuf, &outlen ) );
|
2013-07-25 15:26:54 +02:00
|
|
|
total_len = outlen;
|
|
|
|
|
|
|
|
TEST_ASSERT( total_len == length ||
|
2015-06-24 01:08:09 +02:00
|
|
|
( total_len % block_size == 0 &&
|
2013-07-25 15:26:54 +02:00
|
|
|
total_len < length &&
|
2015-06-24 01:08:09 +02:00
|
|
|
total_len + block_size > length ) );
|
2011-06-09 16:27:58 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_enc, encbuf + outlen, &outlen ) );
|
2013-07-25 15:26:54 +02:00
|
|
|
total_len += outlen;
|
2011-06-09 16:27:58 +02:00
|
|
|
|
2018-05-07 10:43:27 +02:00
|
|
|
#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_write_tag( &ctx_enc, tag, sizeof( tag ) ) );
|
2014-06-24 15:26:28 +02:00
|
|
|
#endif
|
2013-09-03 16:19:22 +02:00
|
|
|
|
2013-07-25 15:26:54 +02:00
|
|
|
TEST_ASSERT( total_len == length ||
|
2015-06-24 01:08:09 +02:00
|
|
|
( total_len % block_size == 0 &&
|
2013-07-25 15:26:54 +02:00
|
|
|
total_len > length &&
|
2015-06-24 01:08:09 +02:00
|
|
|
total_len <= length + block_size ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
|
|
|
|
/* decode the previously encoded string */
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_dec, encbuf, total_len, decbuf, &outlen ) );
|
2013-07-25 15:26:54 +02:00
|
|
|
total_len = outlen;
|
|
|
|
|
|
|
|
TEST_ASSERT( total_len == length ||
|
2015-06-24 01:08:09 +02:00
|
|
|
( total_len % block_size == 0 &&
|
2013-07-25 15:26:54 +02:00
|
|
|
total_len < length &&
|
2015-06-24 01:08:09 +02:00
|
|
|
total_len + block_size >= length ) );
|
2011-06-09 16:27:58 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_dec, decbuf + outlen, &outlen ) );
|
2013-07-25 15:26:54 +02:00
|
|
|
total_len += outlen;
|
2011-06-09 16:27:58 +02:00
|
|
|
|
2018-05-07 10:43:27 +02:00
|
|
|
#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_check_tag( &ctx_dec, tag, sizeof( tag ) ) );
|
2014-06-24 15:26:28 +02:00
|
|
|
#endif
|
2013-09-03 16:19:22 +02:00
|
|
|
|
2013-09-05 10:30:32 +02:00
|
|
|
/* check result */
|
2013-07-25 15:26:54 +02:00
|
|
|
TEST_ASSERT( total_len == length );
|
2011-01-06 16:37:30 +01:00
|
|
|
TEST_ASSERT( 0 == memcmp(inbuf, decbuf, length) );
|
2013-09-05 10:30:32 +02:00
|
|
|
}
|
2011-01-06 16:37:30 +01:00
|
|
|
|
2013-09-05 10:30:32 +02:00
|
|
|
/*
|
|
|
|
* Done
|
|
|
|
*/
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_free( &ctx_dec );
|
|
|
|
mbedtls_cipher_free( &ctx_enc );
|
2013-08-16 13:38:47 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2011-01-06 16:37:30 +01:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void enc_fail( int cipher_id, int pad_mode, int key_len, int length_val,
|
|
|
|
int ret )
|
2013-08-16 13:38:47 +02:00
|
|
|
{
|
2013-08-20 11:48:36 +02:00
|
|
|
size_t length = length_val;
|
2013-07-26 16:50:44 +02:00
|
|
|
unsigned char key[32];
|
|
|
|
unsigned char iv[16];
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_cipher_info_t *cipher_info;
|
|
|
|
mbedtls_cipher_context_t ctx;
|
2013-07-26 16:50:44 +02:00
|
|
|
|
|
|
|
unsigned char inbuf[64];
|
|
|
|
unsigned char encbuf[64];
|
|
|
|
|
|
|
|
size_t outlen = 0;
|
|
|
|
|
|
|
|
memset( key, 0, 32 );
|
|
|
|
memset( iv , 0, 16 );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_init( &ctx );
|
2013-07-26 16:50:44 +02:00
|
|
|
|
|
|
|
memset( inbuf, 5, 64 );
|
|
|
|
memset( encbuf, 0, 64 );
|
|
|
|
|
|
|
|
/* Check and get info structures */
|
2015-04-08 12:49:31 +02:00
|
|
|
cipher_info = mbedtls_cipher_info_from_type( cipher_id );
|
2013-07-26 16:50:44 +02:00
|
|
|
TEST_ASSERT( NULL != cipher_info );
|
|
|
|
|
|
|
|
/* Initialise context */
|
2015-05-14 13:51:45 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx, cipher_info ) );
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx, key, key_len, MBEDTLS_ENCRYPT ) );
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_WITH_PADDING)
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx, pad_mode ) );
|
2013-09-13 14:41:45 +02:00
|
|
|
#else
|
|
|
|
(void) pad_mode;
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_CIPHER_MODE_WITH_PADDING */
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx, iv, 16 ) );
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx ) );
|
2018-05-07 10:43:27 +02:00
|
|
|
#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update_ad( &ctx, NULL, 0 ) );
|
2014-06-24 15:26:28 +02:00
|
|
|
#endif
|
2013-07-26 16:50:44 +02:00
|
|
|
|
|
|
|
/* encode length number of bytes from inbuf */
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx, inbuf, length, encbuf, &outlen ) );
|
|
|
|
TEST_ASSERT( ret == mbedtls_cipher_finish( &ctx, encbuf + outlen, &outlen ) );
|
2013-07-26 16:50:44 +02:00
|
|
|
|
|
|
|
/* done */
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_free( &ctx );
|
2013-08-16 13:38:47 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2013-07-26 16:50:44 +02:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
2017-05-30 15:23:15 +02:00
|
|
|
void dec_empty_buf( )
|
2013-08-16 13:38:47 +02:00
|
|
|
{
|
2011-01-06 16:37:30 +01:00
|
|
|
unsigned char key[32];
|
|
|
|
unsigned char iv[16];
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_context_t ctx_dec;
|
|
|
|
const mbedtls_cipher_info_t *cipher_info;
|
2011-01-06 16:37:30 +01:00
|
|
|
|
|
|
|
unsigned char encbuf[64];
|
|
|
|
unsigned char decbuf[64];
|
|
|
|
|
2011-04-24 17:53:29 +02:00
|
|
|
size_t outlen = 0;
|
2011-01-06 16:37:30 +01:00
|
|
|
|
|
|
|
memset( key, 0, 32 );
|
|
|
|
memset( iv , 0, 16 );
|
2014-07-01 15:45:49 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_init( &ctx_dec );
|
2014-07-01 15:45:49 +02:00
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
memset( encbuf, 0, 64 );
|
|
|
|
memset( decbuf, 0, 64 );
|
|
|
|
|
2013-09-03 13:04:44 +02:00
|
|
|
/* Initialise context */
|
2015-04-08 12:49:31 +02:00
|
|
|
cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_AES_128_CBC );
|
2011-01-06 16:37:30 +01:00
|
|
|
TEST_ASSERT( NULL != cipher_info);
|
2014-07-01 15:45:49 +02:00
|
|
|
|
2015-05-14 13:51:45 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_dec, cipher_info ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx_dec, key, 128, MBEDTLS_DECRYPT ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_dec, iv, 16 ) );
|
2013-09-03 13:04:44 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx_dec ) );
|
2013-09-03 13:54:12 +02:00
|
|
|
|
2018-05-07 10:43:27 +02:00
|
|
|
#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update_ad( &ctx_dec, NULL, 0 ) );
|
2014-06-24 15:26:28 +02:00
|
|
|
#endif
|
2011-01-06 16:37:30 +01:00
|
|
|
|
|
|
|
/* decode 0-byte string */
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_dec, encbuf, 0, decbuf, &outlen ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
TEST_ASSERT( 0 == outlen );
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED == mbedtls_cipher_finish(
|
2013-09-03 16:19:22 +02:00
|
|
|
&ctx_dec, decbuf + outlen, &outlen ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
TEST_ASSERT( 0 == outlen );
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_free( &ctx_dec );
|
2013-08-16 13:38:47 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2011-01-06 16:37:30 +01:00
|
|
|
|
2013-08-20 11:48:36 +02:00
|
|
|
/* BEGIN_CASE */
|
|
|
|
void enc_dec_buf_multipart( int cipher_id, int key_len, int first_length_val,
|
2018-03-28 04:16:17 +02:00
|
|
|
int second_length_val, int pad_mode,
|
|
|
|
int first_encrypt_output_len, int second_encrypt_output_len,
|
|
|
|
int first_decrypt_output_len, int second_decrypt_output_len )
|
2013-08-16 13:38:47 +02:00
|
|
|
{
|
2013-08-20 11:48:36 +02:00
|
|
|
size_t first_length = first_length_val;
|
|
|
|
size_t second_length = second_length_val;
|
2011-04-24 10:57:21 +02:00
|
|
|
size_t length = first_length + second_length;
|
2015-06-24 01:08:09 +02:00
|
|
|
size_t block_size;
|
2011-01-06 16:37:30 +01:00
|
|
|
unsigned char key[32];
|
|
|
|
unsigned char iv[16];
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_context_t ctx_dec;
|
|
|
|
mbedtls_cipher_context_t ctx_enc;
|
|
|
|
const mbedtls_cipher_info_t *cipher_info;
|
2011-01-06 16:37:30 +01:00
|
|
|
|
|
|
|
unsigned char inbuf[64];
|
|
|
|
unsigned char encbuf[64];
|
|
|
|
unsigned char decbuf[64];
|
|
|
|
|
2011-04-24 10:57:21 +02:00
|
|
|
size_t outlen = 0;
|
|
|
|
size_t totaloutlen = 0;
|
2011-01-06 16:37:30 +01:00
|
|
|
|
|
|
|
memset( key, 0, 32 );
|
|
|
|
memset( iv , 0, 16 );
|
2014-07-01 15:45:49 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_init( &ctx_dec );
|
|
|
|
mbedtls_cipher_init( &ctx_enc );
|
2014-07-01 15:45:49 +02:00
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
memset( inbuf, 5, 64 );
|
|
|
|
memset( encbuf, 0, 64 );
|
|
|
|
memset( decbuf, 0, 64 );
|
|
|
|
|
|
|
|
/* Initialise enc and dec contexts */
|
2015-04-08 12:49:31 +02:00
|
|
|
cipher_info = mbedtls_cipher_info_from_type( cipher_id );
|
2011-01-06 16:37:30 +01:00
|
|
|
TEST_ASSERT( NULL != cipher_info);
|
2014-07-01 15:45:49 +02:00
|
|
|
|
2015-05-14 13:51:45 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_dec, cipher_info ) );
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_enc, cipher_info ) );
|
2014-07-01 15:45:49 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx_dec, key, key_len, MBEDTLS_DECRYPT ) );
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx_enc, key, key_len, MBEDTLS_ENCRYPT ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
|
2018-03-28 04:16:17 +02:00
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_WITH_PADDING)
|
|
|
|
if( -1 != pad_mode )
|
|
|
|
{
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx_dec, pad_mode ) );
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx_enc, pad_mode ) );
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
(void) pad_mode;
|
|
|
|
#endif /* MBEDTLS_CIPHER_MODE_WITH_PADDING */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_dec, iv, 16 ) );
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_enc, iv, 16 ) );
|
2013-09-03 13:04:44 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx_dec ) );
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx_enc ) );
|
2013-09-03 13:54:12 +02:00
|
|
|
|
2018-05-07 10:43:27 +02:00
|
|
|
#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update_ad( &ctx_dec, NULL, 0 ) );
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update_ad( &ctx_enc, NULL, 0 ) );
|
2014-06-24 15:26:28 +02:00
|
|
|
#endif
|
2011-01-06 16:37:30 +01:00
|
|
|
|
2015-06-24 01:08:09 +02:00
|
|
|
block_size = mbedtls_cipher_get_block_size( &ctx_enc );
|
|
|
|
TEST_ASSERT( block_size != 0 );
|
|
|
|
|
2011-01-06 16:37:30 +01:00
|
|
|
/* encode length number of bytes from inbuf */
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_enc, inbuf, first_length, encbuf, &outlen ) );
|
2018-03-28 04:16:17 +02:00
|
|
|
TEST_ASSERT( (size_t)first_encrypt_output_len == outlen );
|
2011-01-06 16:37:30 +01:00
|
|
|
totaloutlen = outlen;
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_enc, inbuf + first_length, second_length, encbuf + totaloutlen, &outlen ) );
|
2018-03-28 04:16:17 +02:00
|
|
|
TEST_ASSERT( (size_t)second_encrypt_output_len == outlen );
|
2011-01-06 16:37:30 +01:00
|
|
|
totaloutlen += outlen;
|
2013-07-25 15:26:54 +02:00
|
|
|
TEST_ASSERT( totaloutlen == length ||
|
2015-06-24 01:08:09 +02:00
|
|
|
( totaloutlen % block_size == 0 &&
|
2013-07-25 15:26:54 +02:00
|
|
|
totaloutlen < length &&
|
2015-06-24 01:08:09 +02:00
|
|
|
totaloutlen + block_size > length ) );
|
2013-07-25 15:26:54 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_enc, encbuf + totaloutlen, &outlen ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
totaloutlen += outlen;
|
2013-07-25 15:26:54 +02:00
|
|
|
TEST_ASSERT( totaloutlen == length ||
|
2015-06-24 01:08:09 +02:00
|
|
|
( totaloutlen % block_size == 0 &&
|
2013-07-25 15:26:54 +02:00
|
|
|
totaloutlen > length &&
|
2015-06-24 01:08:09 +02:00
|
|
|
totaloutlen <= length + block_size ) );
|
2011-01-06 16:37:30 +01:00
|
|
|
|
|
|
|
/* decode the previously encoded string */
|
2018-03-28 04:16:17 +02:00
|
|
|
second_length = totaloutlen - first_length;
|
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_dec, encbuf, first_length, decbuf, &outlen ) );
|
|
|
|
TEST_ASSERT( (size_t)first_decrypt_output_len == outlen );
|
2013-07-25 15:26:54 +02:00
|
|
|
totaloutlen = outlen;
|
2018-03-28 04:16:17 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_dec, encbuf + first_length, second_length, decbuf + totaloutlen, &outlen ) );
|
|
|
|
TEST_ASSERT( (size_t)second_decrypt_output_len == outlen );
|
|
|
|
totaloutlen += outlen;
|
2013-07-25 15:26:54 +02:00
|
|
|
|
|
|
|
TEST_ASSERT( totaloutlen == length ||
|
2015-06-24 01:08:09 +02:00
|
|
|
( totaloutlen % block_size == 0 &&
|
2013-07-25 15:26:54 +02:00
|
|
|
totaloutlen < length &&
|
2015-06-24 01:08:09 +02:00
|
|
|
totaloutlen + block_size >= length ) );
|
2013-07-25 15:26:54 +02:00
|
|
|
|
2018-03-28 04:16:17 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_dec, decbuf + totaloutlen, &outlen ) );
|
2013-07-25 15:26:54 +02:00
|
|
|
totaloutlen += outlen;
|
|
|
|
|
|
|
|
TEST_ASSERT( totaloutlen == length );
|
2011-01-06 16:37:30 +01:00
|
|
|
|
|
|
|
TEST_ASSERT( 0 == memcmp(inbuf, decbuf, length) );
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_free( &ctx_dec );
|
|
|
|
mbedtls_cipher_free( &ctx_enc );
|
2013-08-16 13:38:47 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2011-01-06 16:37:30 +01:00
|
|
|
|
2013-09-03 18:31:25 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-29 12:05:32 +02:00
|
|
|
void decrypt_test_vec( int cipher_id, int pad_mode, data_t * key,
|
|
|
|
data_t * iv, data_t * cipher,
|
|
|
|
data_t * clear, data_t * ad, data_t * tag,
|
2017-06-09 05:32:58 +02:00
|
|
|
int finish_result, int tag_result )
|
2013-09-03 18:31:25 +02:00
|
|
|
{
|
2018-05-10 12:54:32 +02:00
|
|
|
unsigned char output[265];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_context_t ctx;
|
2013-09-03 18:31:25 +02:00
|
|
|
size_t outlen, total_len;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_init( &ctx );
|
2014-07-01 15:45:49 +02:00
|
|
|
|
2013-09-03 18:31:25 +02:00
|
|
|
memset( output, 0x00, sizeof( output ) );
|
|
|
|
|
2017-05-30 15:23:15 +02:00
|
|
|
#if !defined(MBEDTLS_GCM_C) && !defined(MBEDTLS_CHACHAPOLY_C)
|
2017-06-13 15:55:58 +02:00
|
|
|
((void) ad);
|
|
|
|
((void) tag);
|
2013-09-20 11:29:59 +02:00
|
|
|
#endif
|
2013-09-03 18:31:25 +02:00
|
|
|
|
|
|
|
/* Prepare context */
|
2015-05-14 13:51:45 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_info_from_type( cipher_id ) ) );
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx, key->x, 8 * key->len, MBEDTLS_DECRYPT ) );
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_WITH_PADDING)
|
2013-09-03 18:31:25 +02:00
|
|
|
if( pad_mode != -1 )
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx, pad_mode ) );
|
2013-09-13 14:41:45 +02:00
|
|
|
#else
|
|
|
|
(void) pad_mode;
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_CIPHER_MODE_WITH_PADDING */
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx, iv->x, iv->len ) );
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx ) );
|
2018-05-07 10:43:27 +02:00
|
|
|
#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update_ad( &ctx, ad->x, ad->len ) );
|
2014-06-24 15:26:28 +02:00
|
|
|
#endif
|
2013-09-03 18:31:25 +02:00
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
/* decode buffer and check tag->x */
|
2013-09-03 18:31:25 +02:00
|
|
|
total_len = 0;
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx, cipher->x, cipher->len, output, &outlen ) );
|
2013-09-03 18:31:25 +02:00
|
|
|
total_len += outlen;
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( finish_result == mbedtls_cipher_finish( &ctx, output + outlen,
|
2013-09-03 18:31:25 +02:00
|
|
|
&outlen ) );
|
|
|
|
total_len += outlen;
|
2018-05-07 10:43:27 +02:00
|
|
|
#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( tag_result == mbedtls_cipher_check_tag( &ctx, tag->x, tag->len ) );
|
2014-06-24 15:26:28 +02:00
|
|
|
#endif
|
2013-09-03 18:31:25 +02:00
|
|
|
|
|
|
|
/* check plaintext only if everything went fine */
|
|
|
|
if( 0 == finish_result && 0 == tag_result )
|
|
|
|
{
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( total_len == clear->len );
|
|
|
|
TEST_ASSERT( 0 == memcmp( output, clear->x, clear->len ) );
|
2013-09-03 18:31:25 +02:00
|
|
|
}
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_free( &ctx );
|
2013-09-03 18:31:25 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_AEAD */
|
2018-06-29 12:05:32 +02:00
|
|
|
void auth_crypt_tv( int cipher_id, data_t * key, data_t * iv,
|
|
|
|
data_t * ad, data_t * cipher, data_t * tag,
|
|
|
|
char * result, data_t * clear )
|
2014-05-15 16:03:07 +02:00
|
|
|
{
|
|
|
|
int ret;
|
2018-05-09 12:25:18 +02:00
|
|
|
unsigned char output[267]; /* above + 2 (overwrite check) */
|
2014-05-15 16:03:07 +02:00
|
|
|
unsigned char my_tag[20];
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_context_t ctx;
|
2014-05-15 16:03:07 +02:00
|
|
|
size_t outlen;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_init( &ctx );
|
2014-07-01 15:45:49 +02:00
|
|
|
|
2014-05-15 16:03:07 +02:00
|
|
|
memset( output, 0xFF, sizeof( output ) );
|
2017-05-31 21:46:35 +02:00
|
|
|
memset( my_tag, 0xFF, sizeof( my_tag ) );
|
2014-05-15 16:03:07 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Prepare context */
|
2015-05-14 13:51:45 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_info_from_type( cipher_id ) ) );
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx, key->x, 8 * key->len, MBEDTLS_DECRYPT ) );
|
2014-05-15 16:03:07 +02:00
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
/* decode buffer and check tag->x */
|
|
|
|
ret = mbedtls_cipher_auth_decrypt( &ctx, iv->x, iv->len, ad->x, ad->len,
|
|
|
|
cipher->x, cipher->len, output, &outlen,
|
|
|
|
tag->x, tag->len );
|
2014-05-15 16:03:07 +02:00
|
|
|
|
|
|
|
/* make sure we didn't overwrite */
|
|
|
|
TEST_ASSERT( output[outlen + 0] == 0xFF );
|
|
|
|
TEST_ASSERT( output[outlen + 1] == 0xFF );
|
|
|
|
|
|
|
|
/* make sure the message is rejected if it should be */
|
2017-05-31 21:46:35 +02:00
|
|
|
if( strcmp( result, "FAIL" ) == 0 )
|
2014-05-15 16:03:07 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( ret == MBEDTLS_ERR_CIPHER_AUTH_FAILED );
|
2014-07-10 15:26:12 +02:00
|
|
|
goto exit;
|
2014-05-15 16:03:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* otherwise, make sure it was decrypted properly */
|
|
|
|
TEST_ASSERT( ret == 0 );
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( outlen == clear->len );
|
|
|
|
TEST_ASSERT( memcmp( output, clear->x, clear->len ) == 0 );
|
2014-05-15 16:03:07 +02:00
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
/* then encrypt the clear->x and make sure we get the same ciphertext and tag->x */
|
2014-05-15 16:03:07 +02:00
|
|
|
memset( output, 0xFF, sizeof( output ) );
|
|
|
|
outlen = 0;
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
ret = mbedtls_cipher_auth_encrypt( &ctx, iv->x, iv->len, ad->x, ad->len,
|
|
|
|
clear->x, clear->len, output, &outlen,
|
|
|
|
my_tag, tag->len );
|
2014-05-15 16:03:07 +02:00
|
|
|
TEST_ASSERT( ret == 0 );
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( outlen == clear->len );
|
|
|
|
TEST_ASSERT( memcmp( output, cipher->x, clear->len ) == 0 );
|
|
|
|
TEST_ASSERT( memcmp( my_tag, tag->x, tag->len ) == 0 );
|
2014-05-15 16:03:07 +02:00
|
|
|
|
|
|
|
/* make sure we didn't overwrite */
|
|
|
|
TEST_ASSERT( output[outlen + 0] == 0xFF );
|
|
|
|
TEST_ASSERT( output[outlen + 1] == 0xFF );
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( my_tag[tag->len + 0] == 0xFF );
|
|
|
|
TEST_ASSERT( my_tag[tag->len + 1] == 0xFF );
|
2014-05-15 16:03:07 +02:00
|
|
|
|
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_free( &ctx );
|
2014-05-15 16:03:07 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2013-09-08 23:04:04 +02:00
|
|
|
/* BEGIN_CASE */
|
2018-06-29 12:05:32 +02:00
|
|
|
void test_vec_ecb( int cipher_id, int operation, data_t * key,
|
|
|
|
data_t * input, data_t * result, int finish_result
|
2017-06-09 05:32:58 +02:00
|
|
|
)
|
2013-09-08 23:04:04 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_context_t ctx;
|
2013-09-08 23:04:04 +02:00
|
|
|
unsigned char output[32];
|
|
|
|
size_t outlen;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_init( &ctx );
|
2014-07-01 15:45:49 +02:00
|
|
|
|
2013-09-08 23:04:04 +02:00
|
|
|
memset( output, 0x00, sizeof( output ) );
|
|
|
|
|
|
|
|
/* Prepare context */
|
2015-05-14 13:51:45 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_info_from_type( cipher_id ) ) );
|
2013-09-08 23:04:04 +02:00
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx, key->x, 8 * key->len, operation ) );
|
2013-09-08 23:04:04 +02:00
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx, input->x,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_get_block_size( &ctx ),
|
2013-09-08 23:04:04 +02:00
|
|
|
output, &outlen ) );
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( outlen == mbedtls_cipher_get_block_size( &ctx ) );
|
|
|
|
TEST_ASSERT( finish_result == mbedtls_cipher_finish( &ctx, output + outlen,
|
2013-09-08 23:04:04 +02:00
|
|
|
&outlen ) );
|
|
|
|
TEST_ASSERT( 0 == outlen );
|
|
|
|
|
|
|
|
/* check plaintext only if everything went fine */
|
|
|
|
if( 0 == finish_result )
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( 0 == memcmp( output, result->x,
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_get_block_size( &ctx ) ) );
|
2013-09-08 23:04:04 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_free( &ctx );
|
2013-09-08 23:04:04 +02:00
|
|
|
}
|
|
|
|
/* END_CASE */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_WITH_PADDING */
|
2013-08-20 11:48:36 +02:00
|
|
|
void set_padding( int cipher_id, int pad_mode, int ret )
|
2013-08-16 13:38:47 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_cipher_info_t *cipher_info;
|
|
|
|
mbedtls_cipher_context_t ctx;
|
2013-07-24 18:05:00 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_init( &ctx );
|
2014-07-01 15:45:49 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
cipher_info = mbedtls_cipher_info_from_type( cipher_id );
|
2013-07-24 18:05:00 +02:00
|
|
|
TEST_ASSERT( NULL != cipher_info );
|
2015-05-14 13:51:45 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx, cipher_info ) );
|
2013-07-24 18:05:00 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( ret == mbedtls_cipher_set_padding_mode( &ctx, pad_mode ) );
|
2013-07-24 18:05:00 +02:00
|
|
|
|
2014-07-10 15:26:12 +02:00
|
|
|
exit:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_free( &ctx );
|
2013-08-16 13:38:47 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|
2011-01-06 16:37:30 +01: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 check_padding( int pad_mode, data_t * input, int ret, int dlen_check
|
2017-06-09 05:32:58 +02:00
|
|
|
)
|
2013-08-16 13:38:47 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_info_t cipher_info;
|
|
|
|
mbedtls_cipher_context_t ctx;
|
2017-05-30 15:23:15 +02:00
|
|
|
size_t dlen;
|
2013-07-26 10:55:02 +02:00
|
|
|
|
|
|
|
/* build a fake context just for getting access to get_padding */
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_cipher_init( &ctx );
|
|
|
|
cipher_info.mode = MBEDTLS_MODE_CBC;
|
2013-07-26 10:55:02 +02:00
|
|
|
ctx.cipher_info = &cipher_info;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx, pad_mode ) );
|
2013-07-26 10:55:02 +02:00
|
|
|
|
|
|
|
|
2017-06-09 05:32:58 +02:00
|
|
|
TEST_ASSERT( ret == ctx.get_padding( input->x, input->len, &dlen ) );
|
2013-08-20 11:48:36 +02:00
|
|
|
if( 0 == ret )
|
|
|
|
TEST_ASSERT( dlen == (size_t) dlen_check );
|
2013-08-16 13:38:47 +02:00
|
|
|
}
|
2013-08-20 11:48:36 +02:00
|
|
|
/* END_CASE */
|