blob: 708adb09b1fb44d654ca1b237007bdbf914f4237 [file] [log] [blame]
Paul Bakker33b43f12013-08-20 11:48:36 +02001/* BEGIN_HEADER */
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +00002#include "mbedtls/cipher.h"
Manuel Pégourié-Gonnardf7ce67f2013-09-03 20:17:35 +02003
k-stachowiakd8727232019-07-29 17:46:29 +02004#if defined(MBEDTLS_AES_C)
5#include "mbedtls/aes.h"
6#endif
7
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02008#if defined(MBEDTLS_GCM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +00009#include "mbedtls/gcm.h"
Manuel Pégourié-Gonnardf7ce67f2013-09-03 20:17:35 +020010#endif
Gilles Peskine5386f6b2019-08-01 12:47:40 +020011
Manuel Pégourié-Gonnard4c1a1002020-11-26 10:22:50 +010012#if defined(MBEDTLS_CIPHER_MODE_AEAD) || defined(MBEDTLS_NIST_KW_C)
13#define MBEDTLS_CIPHER_AUTH_CRYPT
14#endif
15
Gilles Peskine0be02bd2021-07-19 16:32:54 +020016/* Check the internal consistency of a cipher info structure, and
17 * check it against mbedtls_cipher_info_from_xxx(). */
18static int check_cipher_info( mbedtls_cipher_type_t type,
19 const mbedtls_cipher_info_t *info )
20{
Max Fillinger72abd8a2021-11-28 14:02:36 +010021 size_t key_bitlen, block_size, iv_size;
Gilles Peskine0be02bd2021-07-19 16:32:54 +020022
23 TEST_ASSERT( info != NULL );
24 TEST_EQUAL( type, mbedtls_cipher_info_get_type( info ) );
25 TEST_EQUAL( type, info->type );
26 TEST_ASSERT( mbedtls_cipher_info_from_type( type ) == info );
27
28 TEST_EQUAL( info->mode, mbedtls_cipher_info_get_mode( info ) );
29
30 /* Insist that get_name() return the string from the structure and
31 * not a copy. A copy would have an unknown storage duration. */
32 TEST_ASSERT( mbedtls_cipher_info_get_name( info ) == info->name );
33 TEST_ASSERT( mbedtls_cipher_info_from_string( info->name ) == info );
34
35 key_bitlen = mbedtls_cipher_info_get_key_bitlen( info );
Max Fillingerc60c3a02021-11-09 22:38:56 +010036 block_size = mbedtls_cipher_info_get_block_size( info );
37 iv_size = mbedtls_cipher_info_get_iv_size( info );
Gilles Peskine6ac8f942021-09-01 08:31:49 +020038 if( info->type == MBEDTLS_CIPHER_NULL )
Max Fillingerc60c3a02021-11-09 22:38:56 +010039 {
Gilles Peskine6ac8f942021-09-01 08:31:49 +020040 TEST_ASSERT( key_bitlen == 0 );
Max Fillingerc60c3a02021-11-09 22:38:56 +010041 TEST_ASSERT( block_size == 1 );
42 TEST_ASSERT( iv_size == 0 );
43 }
Gilles Peskine6ac8f942021-09-01 08:31:49 +020044 else if( info->mode == MBEDTLS_MODE_XTS )
45 {
46 TEST_ASSERT( key_bitlen == 256 ||
47 key_bitlen == 384 ||
48 key_bitlen == 512 );
49 }
50 else if( ! strncmp( info->name, "DES-EDE3-", 9 ) )
51 {
52 TEST_ASSERT( key_bitlen == 192 );
Max Fillingerc60c3a02021-11-09 22:38:56 +010053 TEST_ASSERT( ! mbedtls_cipher_info_has_variable_key_bitlen( info ) );
54 TEST_ASSERT( block_size == 8 );
Gilles Peskine6ac8f942021-09-01 08:31:49 +020055 }
56 else if( ! strncmp( info->name, "DES-EDE-", 8 ) )
57 {
58 TEST_ASSERT( key_bitlen == 128 );
Max Fillingerc60c3a02021-11-09 22:38:56 +010059 TEST_ASSERT( ! mbedtls_cipher_info_has_variable_key_bitlen( info ) );
60 TEST_ASSERT( block_size == 8 );
Gilles Peskine6ac8f942021-09-01 08:31:49 +020061 }
62 else if( ! strncmp( info->name, "DES-", 4 ) )
63 {
64 TEST_ASSERT( key_bitlen == 64 );
Max Fillingerc60c3a02021-11-09 22:38:56 +010065 TEST_ASSERT( ! mbedtls_cipher_info_has_variable_key_bitlen( info ) );
66 TEST_ASSERT( block_size == 8 );
67 }
68 else if( ! strncmp( info->name, "AES", 3 ) )
69 {
70 TEST_ASSERT( key_bitlen == 128 ||
71 key_bitlen == 192 ||
72 key_bitlen == 256 );
73 TEST_ASSERT( ! mbedtls_cipher_info_has_variable_key_bitlen( info ) );
74 TEST_ASSERT( block_size == 16 );
Gilles Peskine6ac8f942021-09-01 08:31:49 +020075 }
76 else
77 {
78 TEST_ASSERT( key_bitlen == 128 ||
79 key_bitlen == 192 ||
80 key_bitlen == 256 );
81 }
Gilles Peskine0be02bd2021-07-19 16:32:54 +020082
Max Fillingerc60c3a02021-11-09 22:38:56 +010083 if( strstr( info->name, "-ECB" ) != NULL )
84 {
85 TEST_ASSERT( iv_size == 0 );
86 TEST_ASSERT( ! mbedtls_cipher_info_has_variable_iv_size( info ) );
87 }
88 else if( strstr( info->name, "-CBC" ) != NULL ||
89 strstr( info->name, "-CTR" ) != NULL )
90 {
91 TEST_ASSERT( iv_size == block_size );
92 TEST_ASSERT( ! mbedtls_cipher_info_has_variable_iv_size( info ) );
93 }
94 else if( strstr( info->name, "-GCM" ) != NULL )
95 {
96 TEST_ASSERT( iv_size == block_size - 4 );
97 TEST_ASSERT( mbedtls_cipher_info_has_variable_iv_size( info ) );
98 }
99
Gilles Peskine0be02bd2021-07-19 16:32:54 +0200100 return( 1 );
101
102exit:
103 return( 0 );
104}
105
Manuel Pégourié-Gonnard89a8fe52020-11-27 09:32:55 +0100106#if defined(MBEDTLS_CIPHER_AUTH_CRYPT)
107/* Helper for resetting key/direction
108 *
109 * The documentation doesn't explicitly say whether calling
110 * mbedtls_cipher_setkey() twice is allowed or not. This currently works with
111 * the default software implementation, but only by accident. It isn't
112 * guaranteed to work with new ciphers or with alternative implementations of
113 * individual ciphers, and it doesn't work with the PSA wrappers. So don't do
114 * it, and instead start with a fresh context.
115 */
Gilles Peskine8a3d2342020-12-03 21:06:15 +0100116static int cipher_reset_key( mbedtls_cipher_context_t *ctx, int cipher_id,
Manuel Pégourié-Gonnard89a8fe52020-11-27 09:32:55 +0100117 int use_psa, size_t tag_len, const data_t *key, int direction )
118{
119 mbedtls_cipher_free( ctx );
120 mbedtls_cipher_init( ctx );
121
Przemek Stekiel476d9c42022-05-19 12:26:33 +0200122#if !defined(MBEDTLS_USE_PSA_CRYPO) || !defined(MBEDTLS_TEST_DEPRECATED)
Manuel Pégourié-Gonnard89a8fe52020-11-27 09:32:55 +0100123 (void) use_psa;
124 (void) tag_len;
125#else
126 if( use_psa == 1 )
127 {
128 TEST_ASSERT( 0 == mbedtls_cipher_setup_psa( ctx,
129 mbedtls_cipher_info_from_type( cipher_id ),
130 tag_len ) );
131 }
132 else
Przemek Stekiel476d9c42022-05-19 12:26:33 +0200133#endif /* !MBEDTLS_USE_PSA_CRYPTO || !MBEDTLS_TEST_DEPRECATED */
Manuel Pégourié-Gonnard89a8fe52020-11-27 09:32:55 +0100134 {
135 TEST_ASSERT( 0 == mbedtls_cipher_setup( ctx,
136 mbedtls_cipher_info_from_type( cipher_id ) ) );
137 }
138
139 TEST_ASSERT( 0 == mbedtls_cipher_setkey( ctx, key->x, 8 * key->len,
140 direction ) );
Gilles Peskine8a3d2342020-12-03 21:06:15 +0100141 return( 1 );
142
Manuel Pégourié-Gonnard89a8fe52020-11-27 09:32:55 +0100143exit:
Gilles Peskine8a3d2342020-12-03 21:06:15 +0100144 return( 0 );
Manuel Pégourié-Gonnard89a8fe52020-11-27 09:32:55 +0100145}
Manuel Pégourié-Gonnardf215ef82020-12-03 12:33:31 +0100146
147/*
148 * Check if a buffer is all-0 bytes:
149 * return 1 if it is,
150 * 0 if it isn't.
151 */
152int buffer_is_all_zero( const uint8_t *buf, size_t size )
153{
154 for( size_t i = 0; i < size; i++ )
155 if( buf[i] != 0 )
156 return 0;
157 return 1;
158}
Manuel Pégourié-Gonnard89a8fe52020-11-27 09:32:55 +0100159#endif /* MBEDTLS_CIPHER_AUTH_CRYPT */
160
Paul Bakker33b43f12013-08-20 11:48:36 +0200161/* END_HEADER */
Paul Bakker8123e9d2011-01-06 15:37:30 +0000162
Paul Bakker33b43f12013-08-20 11:48:36 +0200163/* BEGIN_DEPENDENCIES
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200164 * depends_on:MBEDTLS_CIPHER_C
Paul Bakker33b43f12013-08-20 11:48:36 +0200165 * END_DEPENDENCIES
166 */
Paul Bakker5690efc2011-05-26 13:16:06 +0000167
Paul Bakker33b43f12013-08-20 11:48:36 +0200168/* BEGIN_CASE */
Azim Khanf1aaec92017-05-30 14:23:15 +0100169void mbedtls_cipher_list( )
Manuel Pégourié-Gonnard66dfc5a2014-03-29 16:10:55 +0100170{
171 const int *cipher_type;
172
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200173 for( cipher_type = mbedtls_cipher_list(); *cipher_type != 0; cipher_type++ )
Gilles Peskine0be02bd2021-07-19 16:32:54 +0200174 {
175 const mbedtls_cipher_info_t *info =
176 mbedtls_cipher_info_from_type( *cipher_type );
177 mbedtls_test_set_step( *cipher_type );
178 if( ! check_cipher_info( *cipher_type, info ) )
179 goto exit;
180 }
Manuel Pégourié-Gonnard66dfc5a2014-03-29 16:10:55 +0100181}
182/* END_CASE */
183
184/* BEGIN_CASE */
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500185void cipher_invalid_param_unconditional( )
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200186{
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500187 mbedtls_cipher_context_t valid_ctx;
188 mbedtls_cipher_context_t invalid_ctx;
189 mbedtls_operation_t valid_operation = MBEDTLS_ENCRYPT;
190 mbedtls_cipher_padding_t valid_mode = MBEDTLS_PADDING_ZEROS;
191 unsigned char valid_buffer[] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07 };
192 int valid_size = sizeof(valid_buffer);
193 int valid_bitlen = valid_size * 8;
194 const mbedtls_cipher_info_t *valid_info = mbedtls_cipher_info_from_type(
195 *( mbedtls_cipher_list() ) );
196 size_t size_t_var;
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200197
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500198 (void)valid_mode; /* In some configurations this is unused */
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200199
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500200 mbedtls_cipher_init( &valid_ctx );
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500201 mbedtls_cipher_init( &invalid_ctx );
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200202
Gilles Peskinedc8ecda2021-12-10 14:28:31 +0100203 TEST_ASSERT( mbedtls_cipher_setup( &valid_ctx, valid_info ) == 0 );
204
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500205 /* mbedtls_cipher_setup() */
206 TEST_ASSERT( mbedtls_cipher_setup( &valid_ctx, NULL ) ==
207 MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200208
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500209 /* mbedtls_cipher_get_block_size() */
210 TEST_ASSERT( mbedtls_cipher_get_block_size( &invalid_ctx ) == 0 );
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200211
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500212 /* mbedtls_cipher_get_cipher_mode() */
213 TEST_ASSERT( mbedtls_cipher_get_cipher_mode( &invalid_ctx ) ==
214 MBEDTLS_MODE_NONE );
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200215
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500216 /* mbedtls_cipher_get_iv_size() */
217 TEST_ASSERT( mbedtls_cipher_get_iv_size( &invalid_ctx ) == 0 );
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200218
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500219 /* mbedtls_cipher_get_type() */
220 TEST_ASSERT(
221 mbedtls_cipher_get_type( &invalid_ctx ) ==
222 MBEDTLS_CIPHER_NONE);
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200223
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500224 /* mbedtls_cipher_get_name() */
225 TEST_ASSERT( mbedtls_cipher_get_name( &invalid_ctx ) == 0 );
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200226
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500227 /* mbedtls_cipher_get_key_bitlen() */
228 TEST_ASSERT( mbedtls_cipher_get_key_bitlen( &invalid_ctx ) ==
229 MBEDTLS_KEY_LENGTH_NONE );
230
231 /* mbedtls_cipher_get_operation() */
232 TEST_ASSERT( mbedtls_cipher_get_operation( &invalid_ctx ) ==
233 MBEDTLS_OPERATION_NONE );
234
235 /* mbedtls_cipher_setkey() */
236 TEST_ASSERT(
237 mbedtls_cipher_setkey( &invalid_ctx,
238 valid_buffer,
239 valid_bitlen,
240 valid_operation ) ==
241 MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
242
243 /* mbedtls_cipher_set_iv() */
244 TEST_ASSERT(
245 mbedtls_cipher_set_iv( &invalid_ctx,
246 valid_buffer,
247 valid_size ) ==
248 MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
249
250 /* mbedtls_cipher_reset() */
251 TEST_ASSERT( mbedtls_cipher_reset( &invalid_ctx ) ==
252 MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200253
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +0200254#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500255 /* mbedtls_cipher_update_ad() */
256 TEST_ASSERT(
257 mbedtls_cipher_update_ad( &invalid_ctx,
258 valid_buffer,
259 valid_size ) ==
260 MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
261#endif /* defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C) */
262
263#if defined(MBEDTLS_CIPHER_MODE_WITH_PADDING)
264 /* mbedtls_cipher_set_padding_mode() */
265 TEST_ASSERT( mbedtls_cipher_set_padding_mode( &invalid_ctx, valid_mode ) ==
266 MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200267#endif
268
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500269 /* mbedtls_cipher_update() */
270 TEST_ASSERT(
271 mbedtls_cipher_update( &invalid_ctx,
272 valid_buffer,
273 valid_size,
274 valid_buffer,
275 &size_t_var ) ==
276 MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200277
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500278 /* mbedtls_cipher_finish() */
279 TEST_ASSERT(
280 mbedtls_cipher_finish( &invalid_ctx,
281 valid_buffer,
282 &size_t_var ) ==
283 MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200284
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +0200285#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500286 /* mbedtls_cipher_write_tag() */
287 TEST_ASSERT(
288 mbedtls_cipher_write_tag( &invalid_ctx,
289 valid_buffer,
290 valid_size ) ==
291 MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200292
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500293 /* mbedtls_cipher_check_tag() */
294 TEST_ASSERT(
295 mbedtls_cipher_check_tag( &invalid_ctx,
296 valid_buffer,
297 valid_size ) ==
298 MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
299#endif /* defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C) */
300
301exit:
302 mbedtls_cipher_free( &invalid_ctx );
303 mbedtls_cipher_free( &valid_ctx );
304}
305/* END_CASE */
306
Tuvshinzaya Erdenekhuu6c689272022-07-29 14:45:55 +0100307/* BEGIN_CASE */
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500308void cipher_invalid_param_conditional( )
309{
310 mbedtls_cipher_context_t valid_ctx;
311
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500312 mbedtls_operation_t invalid_operation = 100;
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500313 unsigned char valid_buffer[] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07 };
314 int valid_size = sizeof(valid_buffer);
315 int valid_bitlen = valid_size * 8;
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500316
Ronald Cron875b5fb2021-05-21 08:50:00 +0200317 TEST_EQUAL(
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500318 MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA,
319 mbedtls_cipher_setkey( &valid_ctx,
320 valid_buffer,
321 valid_bitlen,
322 invalid_operation ) );
323
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500324exit:
TRodziewicz70199552021-05-27 13:52:59 +0200325 ;
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200326}
327/* END_CASE */
328
Paul Bakker6a9c7252016-07-14 13:46:10 +0100329/* BEGIN_CASE depends_on:MBEDTLS_AES_C */
Azim Khanf1aaec92017-05-30 14:23:15 +0100330void cipher_special_behaviours( )
Paul Bakker6a9c7252016-07-14 13:46:10 +0100331{
332 const mbedtls_cipher_info_t *cipher_info;
333 mbedtls_cipher_context_t ctx;
334 unsigned char input[32];
335 unsigned char output[32];
Ron Eldor6f90ed82017-09-26 12:08:54 +0300336#if defined (MBEDTLS_CIPHER_MODE_CBC)
Paul Bakker6a9c7252016-07-14 13:46:10 +0100337 unsigned char iv[32];
Ron Eldor6f90ed82017-09-26 12:08:54 +0300338#endif
Paul Bakker6a9c7252016-07-14 13:46:10 +0100339 size_t olen = 0;
340
341 mbedtls_cipher_init( &ctx );
342 memset( input, 0, sizeof( input ) );
343 memset( output, 0, sizeof( output ) );
Ron Eldorbb4bbbb2017-10-01 17:04:54 +0300344#if defined(MBEDTLS_CIPHER_MODE_CBC)
Paul Bakker6a9c7252016-07-14 13:46:10 +0100345 memset( iv, 0, sizeof( iv ) );
346
347 /* Check and get info structures */
Ron Eldor7b012442017-09-25 17:03:12 +0300348 cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_AES_128_CBC );
Paul Bakker6a9c7252016-07-14 13:46:10 +0100349 TEST_ASSERT( NULL != cipher_info );
350
351 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx, cipher_info ) );
352
353 /* IV too big */
354 TEST_ASSERT( mbedtls_cipher_set_iv( &ctx, iv, MBEDTLS_MAX_IV_LENGTH + 1 )
355 == MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE );
356
357 /* IV too small */
358 TEST_ASSERT( mbedtls_cipher_set_iv( &ctx, iv, 0 )
359 == MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
360
Ron Eldor4e64e0b2017-09-25 18:22:32 +0300361 mbedtls_cipher_free( &ctx );
Ron Eldorbb4bbbb2017-10-01 17:04:54 +0300362 mbedtls_cipher_init( &ctx );
Ron Eldor6f90ed82017-09-26 12:08:54 +0300363#endif /* MBEDTLS_CIPHER_MODE_CBC */
Ron Eldor4e64e0b2017-09-25 18:22:32 +0300364 cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_AES_128_ECB );
Ron Eldor7b012442017-09-25 17:03:12 +0300365 TEST_ASSERT( NULL != cipher_info );
366
367 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx, cipher_info ) );
368
Paul Bakker6a9c7252016-07-14 13:46:10 +0100369 /* Update ECB with partial block */
370 TEST_ASSERT( mbedtls_cipher_update( &ctx, input, 1, output, &olen )
371 == MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED );
372
373exit:
374 mbedtls_cipher_free( &ctx );
375}
376/* END_CASE */
377
Manuel Pégourié-Gonnard5e7693f2014-06-13 16:08:07 +0200378/* BEGIN_CASE */
Azim Khanf1aaec92017-05-30 14:23:15 +0100379void enc_dec_buf( int cipher_id, char * cipher_string, int key_len,
Paul Bakker33b43f12013-08-20 11:48:36 +0200380 int length_val, int pad_mode )
Paul Bakkerdbd443d2013-08-16 13:38:47 +0200381{
Mateusz Starzykf257a6e2021-10-27 16:27:44 +0200382 size_t length = length_val, outlen, total_len, i, block_size, iv_len;
Jaeden Amerod906b812018-06-08 11:03:16 +0100383 unsigned char key[64];
Paul Bakker8123e9d2011-01-06 15:37:30 +0000384 unsigned char iv[16];
Manuel Pégourié-Gonnard9241be72013-08-31 17:31:03 +0200385 unsigned char ad[13];
386 unsigned char tag[16];
Manuel Pégourié-Gonnard1af50a22013-09-05 10:30:32 +0200387 unsigned char inbuf[64];
388 unsigned char encbuf[64];
389 unsigned char decbuf[64];
Paul Bakker8123e9d2011-01-06 15:37:30 +0000390
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200391 const mbedtls_cipher_info_t *cipher_info;
392 mbedtls_cipher_context_t ctx_dec;
393 mbedtls_cipher_context_t ctx_enc;
Paul Bakker8123e9d2011-01-06 15:37:30 +0000394
Manuel Pégourié-Gonnard1af50a22013-09-05 10:30:32 +0200395 /*
396 * Prepare contexts
397 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200398 mbedtls_cipher_init( &ctx_dec );
399 mbedtls_cipher_init( &ctx_enc );
Manuel Pégourié-Gonnard1af50a22013-09-05 10:30:32 +0200400
401 memset( key, 0x2a, sizeof( key ) );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000402
403 /* Check and get info structures */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200404 cipher_info = mbedtls_cipher_info_from_type( cipher_id );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000405 TEST_ASSERT( NULL != cipher_info );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200406 TEST_ASSERT( mbedtls_cipher_info_from_string( cipher_string ) == cipher_info );
Gilles Peskine0be02bd2021-07-19 16:32:54 +0200407 TEST_ASSERT( strcmp( mbedtls_cipher_info_get_name( cipher_info ),
408 cipher_string ) == 0 );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000409
410 /* Initialise enc and dec contexts */
Manuel Pégourié-Gonnard8473f872015-05-14 13:51:45 +0200411 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_dec, cipher_info ) );
412 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_enc, cipher_info ) );
Manuel Pégourié-Gonnard1af50a22013-09-05 10:30:32 +0200413
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200414 TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx_dec, key, key_len, MBEDTLS_DECRYPT ) );
415 TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx_enc, key, key_len, MBEDTLS_ENCRYPT ) );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000416
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200417#if defined(MBEDTLS_CIPHER_MODE_WITH_PADDING)
Paul Bakker33b43f12013-08-20 11:48:36 +0200418 if( -1 != pad_mode )
Manuel Pégourié-Gonnard6c978992013-07-26 13:20:42 +0200419 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200420 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx_dec, pad_mode ) );
421 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx_enc, pad_mode ) );
Manuel Pégourié-Gonnard6c978992013-07-26 13:20:42 +0200422 }
Manuel Pégourié-Gonnard989ed382013-09-13 14:41:45 +0200423#else
424 (void) pad_mode;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200425#endif /* MBEDTLS_CIPHER_MODE_WITH_PADDING */
Manuel Pégourié-Gonnard6c978992013-07-26 13:20:42 +0200426
Manuel Pégourié-Gonnard1af50a22013-09-05 10:30:32 +0200427 /*
428 * Do a few encode/decode cycles
429 */
430 for( i = 0; i < 3; i++ )
431 {
432 memset( iv , 0x00 + i, sizeof( iv ) );
433 memset( ad, 0x10 + i, sizeof( ad ) );
434 memset( inbuf, 0x20 + i, sizeof( inbuf ) );
435
436 memset( encbuf, 0, sizeof( encbuf ) );
437 memset( decbuf, 0, sizeof( decbuf ) );
438 memset( tag, 0, sizeof( tag ) );
439
Mateusz Starzykf257a6e2021-10-27 16:27:44 +0200440 if( NULL != strstr( cipher_info->name, "CCM*-NO-TAG") )
441 iv_len = 13; /* For CCM, IV length is expected to be between 7 and 13 bytes.
442 * For CCM*-NO-TAG, IV length must be exactly 13 bytes long. */
Andrzej Kurek63439ed2021-12-01 22:19:33 +0100443 else if( cipher_info->type == MBEDTLS_CIPHER_CHACHA20 ||
444 cipher_info->type == MBEDTLS_CIPHER_CHACHA20_POLY1305 )
Andrzej Kurek33ca6af2021-12-01 21:58:05 +0100445 iv_len = 12;
Mateusz Starzykf257a6e2021-10-27 16:27:44 +0200446 else
447 iv_len = sizeof(iv);
448
449 TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_dec, iv, iv_len ) );
450 TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_enc, iv, iv_len ) );
Manuel Pégourié-Gonnard9c853b92013-09-03 13:04:44 +0200451
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200452 TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx_dec ) );
453 TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx_enc ) );
Manuel Pégourié-Gonnard2adc40c2013-09-03 13:54:12 +0200454
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +0200455#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100456 int expected = ( cipher_info->mode == MBEDTLS_MODE_GCM ||
Tom Cosgroveedca2072022-10-14 12:10:40 +0100457 cipher_info->type == MBEDTLS_CIPHER_CHACHA20_POLY1305 ) ?
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100458 0 : MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE;
459
460 TEST_EQUAL( expected, mbedtls_cipher_update_ad( &ctx_dec, ad, sizeof(ad) - i ) );
461 TEST_EQUAL( expected, mbedtls_cipher_update_ad( &ctx_enc, ad, sizeof(ad) - i ) );
Manuel Pégourié-Gonnard8f625632014-06-24 15:26:28 +0200462#endif
Paul Bakker8123e9d2011-01-06 15:37:30 +0000463
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200464 block_size = mbedtls_cipher_get_block_size( &ctx_enc );
465 TEST_ASSERT( block_size != 0 );
466
Paul Bakker8123e9d2011-01-06 15:37:30 +0000467 /* encode length number of bytes from inbuf */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200468 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_enc, inbuf, length, encbuf, &outlen ) );
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200469 total_len = outlen;
470
471 TEST_ASSERT( total_len == length ||
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200472 ( total_len % block_size == 0 &&
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200473 total_len < length &&
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200474 total_len + block_size > length ) );
Paul Bakker343a8702011-06-09 14:27:58 +0000475
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200476 TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_enc, encbuf + outlen, &outlen ) );
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200477 total_len += outlen;
Paul Bakker343a8702011-06-09 14:27:58 +0000478
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +0200479#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100480 TEST_EQUAL( expected, mbedtls_cipher_write_tag( &ctx_enc, tag, sizeof(tag) ) );
Manuel Pégourié-Gonnard8f625632014-06-24 15:26:28 +0200481#endif
Manuel Pégourié-Gonnardaa9ffc52013-09-03 16:19:22 +0200482
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200483 TEST_ASSERT( total_len == length ||
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200484 ( total_len % block_size == 0 &&
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200485 total_len > length &&
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200486 total_len <= length + block_size ) );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000487
488 /* decode the previously encoded string */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200489 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_dec, encbuf, total_len, decbuf, &outlen ) );
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200490 total_len = outlen;
491
492 TEST_ASSERT( total_len == length ||
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200493 ( total_len % block_size == 0 &&
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200494 total_len < length &&
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200495 total_len + block_size >= length ) );
Paul Bakker343a8702011-06-09 14:27:58 +0000496
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200497 TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_dec, decbuf + outlen, &outlen ) );
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200498 total_len += outlen;
Paul Bakker343a8702011-06-09 14:27:58 +0000499
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +0200500#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100501 TEST_EQUAL( expected, mbedtls_cipher_check_tag( &ctx_dec, tag, sizeof(tag) ) );
Manuel Pégourié-Gonnard8f625632014-06-24 15:26:28 +0200502#endif
Manuel Pégourié-Gonnardaa9ffc52013-09-03 16:19:22 +0200503
Manuel Pégourié-Gonnard1af50a22013-09-05 10:30:32 +0200504 /* check result */
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200505 TEST_ASSERT( total_len == length );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000506 TEST_ASSERT( 0 == memcmp(inbuf, decbuf, length) );
Manuel Pégourié-Gonnard1af50a22013-09-05 10:30:32 +0200507 }
Paul Bakker8123e9d2011-01-06 15:37:30 +0000508
Manuel Pégourié-Gonnard1af50a22013-09-05 10:30:32 +0200509 /*
510 * Done
511 */
Paul Bakkerbd51b262014-07-10 15:26:12 +0200512exit:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200513 mbedtls_cipher_free( &ctx_dec );
514 mbedtls_cipher_free( &ctx_enc );
Paul Bakkerdbd443d2013-08-16 13:38:47 +0200515}
Paul Bakker33b43f12013-08-20 11:48:36 +0200516/* END_CASE */
Paul Bakker8123e9d2011-01-06 15:37:30 +0000517
Paul Bakker33b43f12013-08-20 11:48:36 +0200518/* BEGIN_CASE */
Azim Khanf1aaec92017-05-30 14:23:15 +0100519void enc_fail( int cipher_id, int pad_mode, int key_len, int length_val,
520 int ret )
Paul Bakkerdbd443d2013-08-16 13:38:47 +0200521{
Paul Bakker33b43f12013-08-20 11:48:36 +0200522 size_t length = length_val;
Manuel Pégourié-Gonnardebdc4132013-07-26 16:50:44 +0200523 unsigned char key[32];
524 unsigned char iv[16];
525
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200526 const mbedtls_cipher_info_t *cipher_info;
527 mbedtls_cipher_context_t ctx;
Manuel Pégourié-Gonnardebdc4132013-07-26 16:50:44 +0200528
529 unsigned char inbuf[64];
530 unsigned char encbuf[64];
531
532 size_t outlen = 0;
533
534 memset( key, 0, 32 );
535 memset( iv , 0, 16 );
536
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200537 mbedtls_cipher_init( &ctx );
Manuel Pégourié-Gonnardebdc4132013-07-26 16:50:44 +0200538
539 memset( inbuf, 5, 64 );
540 memset( encbuf, 0, 64 );
541
542 /* Check and get info structures */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200543 cipher_info = mbedtls_cipher_info_from_type( cipher_id );
Manuel Pégourié-Gonnardebdc4132013-07-26 16:50:44 +0200544 TEST_ASSERT( NULL != cipher_info );
545
546 /* Initialise context */
Manuel Pégourié-Gonnard8473f872015-05-14 13:51:45 +0200547 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx, cipher_info ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200548 TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx, key, key_len, MBEDTLS_ENCRYPT ) );
549#if defined(MBEDTLS_CIPHER_MODE_WITH_PADDING)
550 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx, pad_mode ) );
Manuel Pégourié-Gonnard989ed382013-09-13 14:41:45 +0200551#else
552 (void) pad_mode;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200553#endif /* MBEDTLS_CIPHER_MODE_WITH_PADDING */
554 TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx, iv, 16 ) );
555 TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx ) );
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +0200556#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100557 int expected = ( cipher_info->mode == MBEDTLS_MODE_GCM ||
Tom Cosgroveedca2072022-10-14 12:10:40 +0100558 cipher_info->type == MBEDTLS_CIPHER_CHACHA20_POLY1305 ) ?
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100559 0 : MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE;
560
561 TEST_EQUAL( expected, mbedtls_cipher_update_ad( &ctx, NULL, 0 ) );
Manuel Pégourié-Gonnard8f625632014-06-24 15:26:28 +0200562#endif
Manuel Pégourié-Gonnardebdc4132013-07-26 16:50:44 +0200563
564 /* encode length number of bytes from inbuf */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200565 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx, inbuf, length, encbuf, &outlen ) );
566 TEST_ASSERT( ret == mbedtls_cipher_finish( &ctx, encbuf + outlen, &outlen ) );
Manuel Pégourié-Gonnardebdc4132013-07-26 16:50:44 +0200567
568 /* done */
Paul Bakkerbd51b262014-07-10 15:26:12 +0200569exit:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200570 mbedtls_cipher_free( &ctx );
Paul Bakkerdbd443d2013-08-16 13:38:47 +0200571}
Paul Bakker33b43f12013-08-20 11:48:36 +0200572/* END_CASE */
Manuel Pégourié-Gonnardebdc4132013-07-26 16:50:44 +0200573
Paul Bakker33b43f12013-08-20 11:48:36 +0200574/* BEGIN_CASE */
k-stachowiakd8727232019-07-29 17:46:29 +0200575void dec_empty_buf( int cipher,
576 int expected_update_ret,
577 int expected_finish_ret )
Paul Bakkerdbd443d2013-08-16 13:38:47 +0200578{
Paul Bakker8123e9d2011-01-06 15:37:30 +0000579 unsigned char key[32];
Andrzej Kurekb9fbc112022-01-14 16:31:39 +0100580
581 unsigned char *iv = NULL;
582 size_t iv_len = 16;
Paul Bakker8123e9d2011-01-06 15:37:30 +0000583
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200584 mbedtls_cipher_context_t ctx_dec;
585 const mbedtls_cipher_info_t *cipher_info;
Paul Bakker8123e9d2011-01-06 15:37:30 +0000586
587 unsigned char encbuf[64];
588 unsigned char decbuf[64];
589
Paul Bakkerf4a3f302011-04-24 15:53:29 +0000590 size_t outlen = 0;
Paul Bakker8123e9d2011-01-06 15:37:30 +0000591
592 memset( key, 0, 32 );
Paul Bakkerd2a2d612014-07-01 15:45:49 +0200593
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200594 mbedtls_cipher_init( &ctx_dec );
Paul Bakkerd2a2d612014-07-01 15:45:49 +0200595
Paul Bakker8123e9d2011-01-06 15:37:30 +0000596 memset( encbuf, 0, 64 );
597 memset( decbuf, 0, 64 );
598
Manuel Pégourié-Gonnard9c853b92013-09-03 13:04:44 +0200599 /* Initialise context */
Jaeden Amero5ab80ef2019-06-05 15:35:08 +0100600 cipher_info = mbedtls_cipher_info_from_type( cipher );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000601 TEST_ASSERT( NULL != cipher_info);
Andrzej Kurek63439ed2021-12-01 22:19:33 +0100602
603 if( cipher_info->type == MBEDTLS_CIPHER_CHACHA20 ||
604 cipher_info->type == MBEDTLS_CIPHER_CHACHA20_POLY1305 )
605 iv_len = 12;
606
Andrzej Kurekb9fbc112022-01-14 16:31:39 +0100607 ASSERT_ALLOC( iv, iv_len );
608 memset( iv , 0, iv_len );
609
Jaeden Amero5ab80ef2019-06-05 15:35:08 +0100610 TEST_ASSERT( sizeof(key) * 8 >= cipher_info->key_bitlen );
Paul Bakkerd2a2d612014-07-01 15:45:49 +0200611
Manuel Pégourié-Gonnard8473f872015-05-14 13:51:45 +0200612 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_dec, cipher_info ) );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000613
Jaeden Amero5ab80ef2019-06-05 15:35:08 +0100614 TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx_dec,
615 key, cipher_info->key_bitlen,
616 MBEDTLS_DECRYPT ) );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000617
Andrzej Kurek63439ed2021-12-01 22:19:33 +0100618 TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_dec, iv, iv_len ) );
Manuel Pégourié-Gonnard9c853b92013-09-03 13:04:44 +0200619
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200620 TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx_dec ) );
Manuel Pégourié-Gonnard2adc40c2013-09-03 13:54:12 +0200621
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +0200622#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100623 int expected = ( cipher_info->mode == MBEDTLS_MODE_GCM ||
Tom Cosgroveedca2072022-10-14 12:10:40 +0100624 cipher_info->type == MBEDTLS_CIPHER_CHACHA20_POLY1305 ) ?
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100625 0 : MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE;
626
627 TEST_EQUAL( expected, mbedtls_cipher_update_ad( &ctx_dec, NULL, 0 ) );
Manuel Pégourié-Gonnard8f625632014-06-24 15:26:28 +0200628#endif
Paul Bakker8123e9d2011-01-06 15:37:30 +0000629
630 /* decode 0-byte string */
k-stachowiakd8727232019-07-29 17:46:29 +0200631 TEST_ASSERT( expected_update_ret ==
632 mbedtls_cipher_update( &ctx_dec, encbuf, 0, decbuf, &outlen ) );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000633 TEST_ASSERT( 0 == outlen );
Jaeden Amero5ab80ef2019-06-05 15:35:08 +0100634
k-stachowiakd8727232019-07-29 17:46:29 +0200635 if ( expected_finish_ret == 0 &&
636 ( cipher_info->mode == MBEDTLS_MODE_CBC ||
637 cipher_info->mode == MBEDTLS_MODE_ECB ) )
Jaeden Amero5ab80ef2019-06-05 15:35:08 +0100638 {
639 /* Non-CBC and non-ECB ciphers are OK with decrypting empty buffers and
640 * return success, not MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED, when
k-stachowiakd8727232019-07-29 17:46:29 +0200641 * decrypting an empty buffer.
642 * On the other hand, CBC and ECB ciphers need a full block of input.
643 */
644 expected_finish_ret = MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED;
Jaeden Amero5ab80ef2019-06-05 15:35:08 +0100645 }
646
k-stachowiakd8727232019-07-29 17:46:29 +0200647 TEST_ASSERT( expected_finish_ret == mbedtls_cipher_finish(
648 &ctx_dec, decbuf + outlen, &outlen ) );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000649 TEST_ASSERT( 0 == outlen );
650
Paul Bakkerbd51b262014-07-10 15:26:12 +0200651exit:
Andrzej Kurekb9fbc112022-01-14 16:31:39 +0100652 mbedtls_free( iv );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200653 mbedtls_cipher_free( &ctx_dec );
Paul Bakkerdbd443d2013-08-16 13:38:47 +0200654}
Paul Bakker33b43f12013-08-20 11:48:36 +0200655/* END_CASE */
Paul Bakker8123e9d2011-01-06 15:37:30 +0000656
Paul Bakker33b43f12013-08-20 11:48:36 +0200657/* BEGIN_CASE */
658void enc_dec_buf_multipart( int cipher_id, int key_len, int first_length_val,
Jethro Beekman6c563fa2018-03-27 19:16:17 -0700659 int second_length_val, int pad_mode,
660 int first_encrypt_output_len, int second_encrypt_output_len,
661 int first_decrypt_output_len, int second_decrypt_output_len )
Paul Bakkerdbd443d2013-08-16 13:38:47 +0200662{
Paul Bakker33b43f12013-08-20 11:48:36 +0200663 size_t first_length = first_length_val;
664 size_t second_length = second_length_val;
Paul Bakker23986e52011-04-24 08:57:21 +0000665 size_t length = first_length + second_length;
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200666 size_t block_size;
Mateusz Starzykf257a6e2021-10-27 16:27:44 +0200667 size_t iv_len;
Paul Bakker8123e9d2011-01-06 15:37:30 +0000668 unsigned char key[32];
669 unsigned char iv[16];
670
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200671 mbedtls_cipher_context_t ctx_dec;
672 mbedtls_cipher_context_t ctx_enc;
673 const mbedtls_cipher_info_t *cipher_info;
Paul Bakker8123e9d2011-01-06 15:37:30 +0000674
675 unsigned char inbuf[64];
676 unsigned char encbuf[64];
677 unsigned char decbuf[64];
678
Paul Bakker23986e52011-04-24 08:57:21 +0000679 size_t outlen = 0;
680 size_t totaloutlen = 0;
Paul Bakker8123e9d2011-01-06 15:37:30 +0000681
682 memset( key, 0, 32 );
683 memset( iv , 0, 16 );
Paul Bakkerd2a2d612014-07-01 15:45:49 +0200684
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200685 mbedtls_cipher_init( &ctx_dec );
686 mbedtls_cipher_init( &ctx_enc );
Paul Bakkerd2a2d612014-07-01 15:45:49 +0200687
Paul Bakker8123e9d2011-01-06 15:37:30 +0000688 memset( inbuf, 5, 64 );
689 memset( encbuf, 0, 64 );
690 memset( decbuf, 0, 64 );
691
692 /* Initialise enc and dec contexts */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200693 cipher_info = mbedtls_cipher_info_from_type( cipher_id );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000694 TEST_ASSERT( NULL != cipher_info);
Paul Bakkerd2a2d612014-07-01 15:45:49 +0200695
Manuel Pégourié-Gonnard8473f872015-05-14 13:51:45 +0200696 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_dec, cipher_info ) );
697 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_enc, cipher_info ) );
Paul Bakkerd2a2d612014-07-01 15:45:49 +0200698
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200699 TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx_dec, key, key_len, MBEDTLS_DECRYPT ) );
700 TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx_enc, key, key_len, MBEDTLS_ENCRYPT ) );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000701
Jethro Beekman6c563fa2018-03-27 19:16:17 -0700702#if defined(MBEDTLS_CIPHER_MODE_WITH_PADDING)
703 if( -1 != pad_mode )
704 {
705 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx_dec, pad_mode ) );
706 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx_enc, pad_mode ) );
707 }
708#else
709 (void) pad_mode;
710#endif /* MBEDTLS_CIPHER_MODE_WITH_PADDING */
711
Mateusz Starzykf257a6e2021-10-27 16:27:44 +0200712 if( NULL != strstr( cipher_info->name, "CCM*-NO-TAG") )
713 iv_len = 13; /* For CCM, IV length is expected to be between 7 and 13 bytes.
714 * For CCM*-NO-TAG, IV length must be exactly 13 bytes long. */
Andrzej Kurek63439ed2021-12-01 22:19:33 +0100715 else if( cipher_info->type == MBEDTLS_CIPHER_CHACHA20 ||
716 cipher_info->type == MBEDTLS_CIPHER_CHACHA20_POLY1305 )
Andrzej Kurek33ca6af2021-12-01 21:58:05 +0100717 iv_len = 12;
Mateusz Starzykf257a6e2021-10-27 16:27:44 +0200718 else
719 iv_len = sizeof(iv);
720
721 TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_dec, iv, iv_len ) );
722 TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx_enc, iv, iv_len ) );
Manuel Pégourié-Gonnard9c853b92013-09-03 13:04:44 +0200723
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200724 TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx_dec ) );
725 TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx_enc ) );
Manuel Pégourié-Gonnard2adc40c2013-09-03 13:54:12 +0200726
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +0200727#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100728 int expected = ( cipher_info->mode == MBEDTLS_MODE_GCM ||
Tom Cosgroveedca2072022-10-14 12:10:40 +0100729 cipher_info->type == MBEDTLS_CIPHER_CHACHA20_POLY1305 ) ?
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100730 0 : MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE;
731
732 TEST_EQUAL( expected, mbedtls_cipher_update_ad( &ctx_dec, NULL, 0 ) );
733 TEST_EQUAL( expected, mbedtls_cipher_update_ad( &ctx_enc, NULL, 0 ) );
Manuel Pégourié-Gonnard8f625632014-06-24 15:26:28 +0200734#endif
Paul Bakker8123e9d2011-01-06 15:37:30 +0000735
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200736 block_size = mbedtls_cipher_get_block_size( &ctx_enc );
737 TEST_ASSERT( block_size != 0 );
738
Paul Bakker8123e9d2011-01-06 15:37:30 +0000739 /* encode length number of bytes from inbuf */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200740 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_enc, inbuf, first_length, encbuf, &outlen ) );
Jethro Beekman6c563fa2018-03-27 19:16:17 -0700741 TEST_ASSERT( (size_t)first_encrypt_output_len == outlen );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000742 totaloutlen = outlen;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200743 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_enc, inbuf + first_length, second_length, encbuf + totaloutlen, &outlen ) );
Jethro Beekman6c563fa2018-03-27 19:16:17 -0700744 TEST_ASSERT( (size_t)second_encrypt_output_len == outlen );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000745 totaloutlen += outlen;
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200746 TEST_ASSERT( totaloutlen == length ||
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200747 ( totaloutlen % block_size == 0 &&
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200748 totaloutlen < length &&
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200749 totaloutlen + block_size > length ) );
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200750
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200751 TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_enc, encbuf + totaloutlen, &outlen ) );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000752 totaloutlen += outlen;
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200753 TEST_ASSERT( totaloutlen == length ||
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200754 ( totaloutlen % block_size == 0 &&
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200755 totaloutlen > length &&
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200756 totaloutlen <= length + block_size ) );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000757
758 /* decode the previously encoded string */
Jethro Beekman6c563fa2018-03-27 19:16:17 -0700759 second_length = totaloutlen - first_length;
760 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_dec, encbuf, first_length, decbuf, &outlen ) );
761 TEST_ASSERT( (size_t)first_decrypt_output_len == outlen );
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200762 totaloutlen = outlen;
Jethro Beekman6c563fa2018-03-27 19:16:17 -0700763 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx_dec, encbuf + first_length, second_length, decbuf + totaloutlen, &outlen ) );
764 TEST_ASSERT( (size_t)second_decrypt_output_len == outlen );
765 totaloutlen += outlen;
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200766
767 TEST_ASSERT( totaloutlen == length ||
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200768 ( totaloutlen % block_size == 0 &&
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200769 totaloutlen < length &&
Manuel Pégourié-Gonnardac5361f2015-06-24 01:08:09 +0200770 totaloutlen + block_size >= length ) );
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200771
Jethro Beekman6c563fa2018-03-27 19:16:17 -0700772 TEST_ASSERT( 0 == mbedtls_cipher_finish( &ctx_dec, decbuf + totaloutlen, &outlen ) );
Manuel Pégourié-Gonnard725680f2013-07-25 15:26:54 +0200773 totaloutlen += outlen;
774
775 TEST_ASSERT( totaloutlen == length );
Paul Bakker8123e9d2011-01-06 15:37:30 +0000776
777 TEST_ASSERT( 0 == memcmp(inbuf, decbuf, length) );
778
Paul Bakkerbd51b262014-07-10 15:26:12 +0200779exit:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200780 mbedtls_cipher_free( &ctx_dec );
781 mbedtls_cipher_free( &ctx_enc );
Paul Bakkerdbd443d2013-08-16 13:38:47 +0200782}
Paul Bakker33b43f12013-08-20 11:48:36 +0200783/* END_CASE */
Paul Bakker8123e9d2011-01-06 15:37:30 +0000784
Paul Bakker33b43f12013-08-20 11:48:36 +0200785/* BEGIN_CASE */
Azim Khan5fcca462018-06-29 11:05:32 +0100786void decrypt_test_vec( int cipher_id, int pad_mode, data_t * key,
787 data_t * iv, data_t * cipher,
788 data_t * clear, data_t * ad, data_t * tag,
Azim Khand30ca132017-06-09 04:32:58 +0100789 int finish_result, int tag_result )
Manuel Pégourié-Gonnard8eccab52013-09-03 18:31:25 +0200790{
Manuel Pégourié-Gonnard234e1ce2018-05-10 12:54:32 +0200791 unsigned char output[265];
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200792 mbedtls_cipher_context_t ctx;
Manuel Pégourié-Gonnard8eccab52013-09-03 18:31:25 +0200793 size_t outlen, total_len;
794
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200795 mbedtls_cipher_init( &ctx );
Paul Bakkerd2a2d612014-07-01 15:45:49 +0200796
Manuel Pégourié-Gonnard8eccab52013-09-03 18:31:25 +0200797 memset( output, 0x00, sizeof( output ) );
798
Azim Khanf1aaec92017-05-30 14:23:15 +0100799#if !defined(MBEDTLS_GCM_C) && !defined(MBEDTLS_CHACHAPOLY_C)
Mohammad Azim Khancf32c452017-06-13 14:55:58 +0100800 ((void) ad);
801 ((void) tag);
Manuel Pégourié-Gonnarda7496f02013-09-20 11:29:59 +0200802#endif
Manuel Pégourié-Gonnard8eccab52013-09-03 18:31:25 +0200803
804 /* Prepare context */
Manuel Pégourié-Gonnard8473f872015-05-14 13:51:45 +0200805 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200806 mbedtls_cipher_info_from_type( cipher_id ) ) );
Azim Khand30ca132017-06-09 04:32:58 +0100807 TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx, key->x, 8 * key->len, MBEDTLS_DECRYPT ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200808#if defined(MBEDTLS_CIPHER_MODE_WITH_PADDING)
Manuel Pégourié-Gonnard8eccab52013-09-03 18:31:25 +0200809 if( pad_mode != -1 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200810 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx, pad_mode ) );
Manuel Pégourié-Gonnard989ed382013-09-13 14:41:45 +0200811#else
812 (void) pad_mode;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200813#endif /* MBEDTLS_CIPHER_MODE_WITH_PADDING */
Azim Khand30ca132017-06-09 04:32:58 +0100814 TEST_ASSERT( 0 == mbedtls_cipher_set_iv( &ctx, iv->x, iv->len ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200815 TEST_ASSERT( 0 == mbedtls_cipher_reset( &ctx ) );
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +0200816#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100817 int expected = ( ctx.cipher_info->mode == MBEDTLS_MODE_GCM ||
Tom Cosgroveedca2072022-10-14 12:10:40 +0100818 ctx.cipher_info->type == MBEDTLS_CIPHER_CHACHA20_POLY1305 ) ?
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100819 0 : MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE;
820
821 TEST_EQUAL( expected, mbedtls_cipher_update_ad( &ctx, ad->x, ad->len ) );
Manuel Pégourié-Gonnard8f625632014-06-24 15:26:28 +0200822#endif
Manuel Pégourié-Gonnard8eccab52013-09-03 18:31:25 +0200823
Azim Khand30ca132017-06-09 04:32:58 +0100824 /* decode buffer and check tag->x */
Manuel Pégourié-Gonnard8eccab52013-09-03 18:31:25 +0200825 total_len = 0;
Azim Khand30ca132017-06-09 04:32:58 +0100826 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx, cipher->x, cipher->len, output, &outlen ) );
Manuel Pégourié-Gonnard8eccab52013-09-03 18:31:25 +0200827 total_len += outlen;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200828 TEST_ASSERT( finish_result == mbedtls_cipher_finish( &ctx, output + outlen,
Manuel Pégourié-Gonnard8eccab52013-09-03 18:31:25 +0200829 &outlen ) );
830 total_len += outlen;
Manuel Pégourié-Gonnarddca3a5d2018-05-07 10:43:27 +0200831#if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C)
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100832 int tag_expected = ( ctx.cipher_info->mode == MBEDTLS_MODE_GCM ||
Tom Cosgroveedca2072022-10-14 12:10:40 +0100833 ctx.cipher_info->type == MBEDTLS_CIPHER_CHACHA20_POLY1305 ) ?
Tom Cosgrovec621a6d2022-09-30 17:13:35 +0100834 tag_result : MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE;
835
836 TEST_EQUAL( tag_expected, mbedtls_cipher_check_tag( &ctx, tag->x, tag->len ) );
Manuel Pégourié-Gonnard8f625632014-06-24 15:26:28 +0200837#endif
Manuel Pégourié-Gonnard8eccab52013-09-03 18:31:25 +0200838
839 /* check plaintext only if everything went fine */
840 if( 0 == finish_result && 0 == tag_result )
841 {
Azim Khand30ca132017-06-09 04:32:58 +0100842 TEST_ASSERT( total_len == clear->len );
843 TEST_ASSERT( 0 == memcmp( output, clear->x, clear->len ) );
Manuel Pégourié-Gonnard8eccab52013-09-03 18:31:25 +0200844 }
845
Paul Bakkerbd51b262014-07-10 15:26:12 +0200846exit:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200847 mbedtls_cipher_free( &ctx );
Manuel Pégourié-Gonnard8eccab52013-09-03 18:31:25 +0200848}
849/* END_CASE */
850
Manuel Pégourié-Gonnard4c1a1002020-11-26 10:22:50 +0100851/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_AUTH_CRYPT */
Azim Khan5fcca462018-06-29 11:05:32 +0100852void auth_crypt_tv( int cipher_id, data_t * key, data_t * iv,
853 data_t * ad, data_t * cipher, data_t * tag,
Hanno Beckera13272d2018-11-12 16:27:30 +0000854 char * result, data_t * clear, int use_psa )
Manuel Pégourié-Gonnard542eac52014-05-15 16:03:07 +0200855{
Manuel Pégourié-Gonnard4c1a1002020-11-26 10:22:50 +0100856 /*
857 * Take an AEAD ciphertext + tag and perform a pair
858 * of AEAD decryption and AEAD encryption. Check that
Hanno Beckera13272d2018-11-12 16:27:30 +0000859 * this results in the expected plaintext, and that
Manuel Pégourié-Gonnard4c1a1002020-11-26 10:22:50 +0100860 * decryption and encryption are inverse to one another.
861 */
Hanno Beckera13272d2018-11-12 16:27:30 +0000862
Manuel Pégourié-Gonnard542eac52014-05-15 16:03:07 +0200863 int ret;
Manuel Pégourié-Gonnard53f10e72020-11-30 10:17:01 +0100864 int using_nist_kw, using_nist_kw_padding;
Hanno Beckera13272d2018-11-12 16:27:30 +0000865
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200866 mbedtls_cipher_context_t ctx;
Manuel Pégourié-Gonnard542eac52014-05-15 16:03:07 +0200867 size_t outlen;
868
Manuel Pégourié-Gonnard53f10e72020-11-30 10:17:01 +0100869 unsigned char *cipher_plus_tag = NULL;
870 size_t cipher_plus_tag_len;
871 unsigned char *decrypt_buf = NULL;
872 size_t decrypt_buf_len = 0;
873 unsigned char *encrypt_buf = NULL;
874 size_t encrypt_buf_len = 0;
875
Gilles Peskine70edd682020-12-03 20:27:27 +0100876 /* Null pointers are documented as valid for inputs of length 0.
877 * The test framework passes non-null pointers, so set them to NULL.
878 * key, cipher and tag can't be empty. */
879 if( iv->len == 0 )
880 iv->x = NULL;
881 if( ad->len == 0 )
882 ad->x = NULL;
883 if( clear->len == 0 )
884 clear->x = NULL;
885
Manuel Pégourié-Gonnard513c2432020-12-01 10:34:57 +0100886 mbedtls_cipher_init( &ctx );
Manuel Pégourié-Gonnard542eac52014-05-15 16:03:07 +0200887
Manuel Pégourié-Gonnard4c1a1002020-11-26 10:22:50 +0100888 /* Initialize PSA Crypto */
889#if defined(MBEDTLS_USE_PSA_CRYPTO)
890 if( use_psa == 1 )
891 PSA_ASSERT( psa_crypto_init( ) );
Hanno Beckera13272d2018-11-12 16:27:30 +0000892#else
Manuel Pégourié-Gonnard4c1a1002020-11-26 10:22:50 +0100893 (void) use_psa;
894#endif
895
896 /*
Manuel Pégourié-Gonnard53f10e72020-11-30 10:17:01 +0100897 * Are we using NIST_KW? with padding?
898 */
899 using_nist_kw_padding = cipher_id == MBEDTLS_CIPHER_AES_128_KWP ||
900 cipher_id == MBEDTLS_CIPHER_AES_192_KWP ||
901 cipher_id == MBEDTLS_CIPHER_AES_256_KWP;
902 using_nist_kw = cipher_id == MBEDTLS_CIPHER_AES_128_KW ||
903 cipher_id == MBEDTLS_CIPHER_AES_192_KW ||
904 cipher_id == MBEDTLS_CIPHER_AES_256_KW ||
905 using_nist_kw_padding;
906
907 /*
Manuel Pégourié-Gonnard4c1a1002020-11-26 10:22:50 +0100908 * Prepare context for decryption
909 */
Gilles Peskine8a3d2342020-12-03 21:06:15 +0100910 if( ! cipher_reset_key( &ctx, cipher_id, use_psa, tag->len, key,
911 MBEDTLS_DECRYPT ) )
912 goto exit;
Manuel Pégourié-Gonnard542eac52014-05-15 16:03:07 +0200913
Manuel Pégourié-Gonnard4c1a1002020-11-26 10:22:50 +0100914 /*
Manuel Pégourié-Gonnard53f10e72020-11-30 10:17:01 +0100915 * prepare buffer for decryption
916 * (we need the tag appended to the ciphertext)
917 */
918 cipher_plus_tag_len = cipher->len + tag->len;
919 ASSERT_ALLOC( cipher_plus_tag, cipher_plus_tag_len );
920 memcpy( cipher_plus_tag, cipher->x, cipher->len );
921 memcpy( cipher_plus_tag + cipher->len, tag->x, tag->len );
922
923 /*
924 * Compute length of output buffer according to the documentation
925 */
926 if( using_nist_kw )
927 decrypt_buf_len = cipher_plus_tag_len - 8;
928 else
929 decrypt_buf_len = cipher_plus_tag_len - tag->len;
930
931
932 /*
933 * Try decrypting to a buffer that's 1B too small
934 */
935 if( decrypt_buf_len != 0 )
936 {
937 ASSERT_ALLOC( decrypt_buf, decrypt_buf_len - 1 );
938
939 outlen = 0;
940 ret = mbedtls_cipher_auth_decrypt_ext( &ctx, iv->x, iv->len,
941 ad->x, ad->len, cipher_plus_tag, cipher_plus_tag_len,
942 decrypt_buf, decrypt_buf_len - 1, &outlen, tag->len );
943 TEST_ASSERT( ret == MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA );
944
945 mbedtls_free( decrypt_buf );
946 decrypt_buf = NULL;
947 }
948
949 /*
950 * Authenticate and decrypt, and check result
951 */
952 ASSERT_ALLOC( decrypt_buf, decrypt_buf_len );
953
954 outlen = 0;
955 ret = mbedtls_cipher_auth_decrypt_ext( &ctx, iv->x, iv->len,
956 ad->x, ad->len, cipher_plus_tag, cipher_plus_tag_len,
957 decrypt_buf, decrypt_buf_len, &outlen, tag->len );
958
959 if( strcmp( result, "FAIL" ) == 0 )
960 {
961 TEST_ASSERT( ret == MBEDTLS_ERR_CIPHER_AUTH_FAILED );
Manuel Pégourié-Gonnardf215ef82020-12-03 12:33:31 +0100962 TEST_ASSERT( buffer_is_all_zero( decrypt_buf, decrypt_buf_len ) );
Manuel Pégourié-Gonnard53f10e72020-11-30 10:17:01 +0100963 }
964 else
965 {
966 TEST_ASSERT( ret == 0 );
Gilles Peskinea2971ea2020-12-03 20:36:02 +0100967 ASSERT_COMPARE( decrypt_buf, outlen, clear->x, clear->len );
Manuel Pégourié-Gonnard53f10e72020-11-30 10:17:01 +0100968 }
969
Manuel Pégourié-Gonnard53f10e72020-11-30 10:17:01 +0100970 mbedtls_free( decrypt_buf );
971 decrypt_buf = NULL;
972
973 /*
974 * Encrypt back if test data was authentic
975 */
976 if( strcmp( result, "FAIL" ) != 0 )
977 {
978 /* prepare context for encryption */
Gilles Peskine8a3d2342020-12-03 21:06:15 +0100979 if( ! cipher_reset_key( &ctx, cipher_id, use_psa, tag->len, key,
980 MBEDTLS_ENCRYPT ) )
981 goto exit;
Manuel Pégourié-Gonnard53f10e72020-11-30 10:17:01 +0100982
983 /*
984 * Compute size of output buffer according to documentation
985 */
986 if( using_nist_kw )
987 {
988 encrypt_buf_len = clear->len + 8;
989 if( using_nist_kw_padding && encrypt_buf_len % 8 != 0 )
990 encrypt_buf_len += 8 - encrypt_buf_len % 8;
991 }
992 else
993 {
994 encrypt_buf_len = clear->len + tag->len;
995 }
996
997 /*
998 * Try encrypting with an output buffer that's 1B too small
999 */
1000 ASSERT_ALLOC( encrypt_buf, encrypt_buf_len - 1 );
1001
1002 outlen = 0;
1003 ret = mbedtls_cipher_auth_encrypt_ext( &ctx, iv->x, iv->len,
1004 ad->x, ad->len, clear->x, clear->len,
1005 encrypt_buf, encrypt_buf_len - 1, &outlen, tag->len );
1006 TEST_ASSERT( ret != 0 );
1007
1008 mbedtls_free( encrypt_buf );
1009 encrypt_buf = NULL;
1010
1011 /*
1012 * Encrypt and check the result
1013 */
1014 ASSERT_ALLOC( encrypt_buf, encrypt_buf_len );
1015
1016 outlen = 0;
1017 ret = mbedtls_cipher_auth_encrypt_ext( &ctx, iv->x, iv->len,
1018 ad->x, ad->len, clear->x, clear->len,
1019 encrypt_buf, encrypt_buf_len, &outlen, tag->len );
1020 TEST_ASSERT( ret == 0 );
1021
1022 TEST_ASSERT( outlen == cipher->len + tag->len );
1023 TEST_ASSERT( memcmp( encrypt_buf, cipher->x, cipher->len ) == 0 );
1024 TEST_ASSERT( memcmp( encrypt_buf + cipher->len,
1025 tag->x, tag->len ) == 0 );
1026
1027 mbedtls_free( encrypt_buf );
1028 encrypt_buf = NULL;
1029 }
1030
Paul Bakkerbd51b262014-07-10 15:26:12 +02001031exit:
Hanno Beckera13272d2018-11-12 16:27:30 +00001032
Gilles Peskine5386f6b2019-08-01 12:47:40 +02001033 mbedtls_cipher_free( &ctx );
Manuel Pégourié-Gonnard53f10e72020-11-30 10:17:01 +01001034 mbedtls_free( decrypt_buf );
1035 mbedtls_free( encrypt_buf );
1036 mbedtls_free( cipher_plus_tag );
Gilles Peskine5386f6b2019-08-01 12:47:40 +02001037
Hanno Beckera13272d2018-11-12 16:27:30 +00001038#if defined(MBEDTLS_USE_PSA_CRYPTO)
1039 if( use_psa == 1 )
Gilles Peskine5386f6b2019-08-01 12:47:40 +02001040 PSA_DONE( );
Hanno Beckera13272d2018-11-12 16:27:30 +00001041#endif /* MBEDTLS_USE_PSA_CRYPTO */
Manuel Pégourié-Gonnard542eac52014-05-15 16:03:07 +02001042}
1043/* END_CASE */
1044
Manuel Pégourié-Gonnard8eccab52013-09-03 18:31:25 +02001045/* BEGIN_CASE */
Azim Khan5fcca462018-06-29 11:05:32 +01001046void test_vec_ecb( int cipher_id, int operation, data_t * key,
1047 data_t * input, data_t * result, int finish_result
Azim Khand30ca132017-06-09 04:32:58 +01001048 )
Paul Bakker5e0efa72013-09-08 23:04:04 +02001049{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001050 mbedtls_cipher_context_t ctx;
Paul Bakker5e0efa72013-09-08 23:04:04 +02001051 unsigned char output[32];
1052 size_t outlen;
1053
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001054 mbedtls_cipher_init( &ctx );
Paul Bakkerd2a2d612014-07-01 15:45:49 +02001055
Paul Bakker5e0efa72013-09-08 23:04:04 +02001056 memset( output, 0x00, sizeof( output ) );
1057
1058 /* Prepare context */
Manuel Pégourié-Gonnard8473f872015-05-14 13:51:45 +02001059 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001060 mbedtls_cipher_info_from_type( cipher_id ) ) );
Paul Bakker5e0efa72013-09-08 23:04:04 +02001061
Paul Bakker5e0efa72013-09-08 23:04:04 +02001062
Azim Khand30ca132017-06-09 04:32:58 +01001063 TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx, key->x, 8 * key->len, operation ) );
Paul Bakker5e0efa72013-09-08 23:04:04 +02001064
Azim Khand30ca132017-06-09 04:32:58 +01001065 TEST_ASSERT( 0 == mbedtls_cipher_update( &ctx, input->x,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001066 mbedtls_cipher_get_block_size( &ctx ),
Paul Bakker5e0efa72013-09-08 23:04:04 +02001067 output, &outlen ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001068 TEST_ASSERT( outlen == mbedtls_cipher_get_block_size( &ctx ) );
1069 TEST_ASSERT( finish_result == mbedtls_cipher_finish( &ctx, output + outlen,
Paul Bakker5e0efa72013-09-08 23:04:04 +02001070 &outlen ) );
1071 TEST_ASSERT( 0 == outlen );
1072
1073 /* check plaintext only if everything went fine */
1074 if( 0 == finish_result )
Azim Khand30ca132017-06-09 04:32:58 +01001075 TEST_ASSERT( 0 == memcmp( output, result->x,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001076 mbedtls_cipher_get_block_size( &ctx ) ) );
Paul Bakker5e0efa72013-09-08 23:04:04 +02001077
Paul Bakkerbd51b262014-07-10 15:26:12 +02001078exit:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001079 mbedtls_cipher_free( &ctx );
Paul Bakker5e0efa72013-09-08 23:04:04 +02001080}
1081/* END_CASE */
1082
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001083/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_WITH_PADDING */
Ronald Cron9ed40732020-06-25 09:03:34 +02001084void test_vec_crypt( int cipher_id, int operation, data_t *key,
1085 data_t *iv, data_t *input, data_t *result,
Hanno Beckere43164e2018-11-12 12:46:35 +00001086 int finish_result, int use_psa )
Ron Eldor7b012442017-09-25 17:03:12 +03001087{
Ron Eldor7b012442017-09-25 17:03:12 +03001088 mbedtls_cipher_context_t ctx;
1089 unsigned char output[32];
1090 size_t outlen;
1091
1092 mbedtls_cipher_init( &ctx );
1093
Ron Eldor7b012442017-09-25 17:03:12 +03001094 memset( output, 0x00, sizeof( output ) );
Ron Eldor7b012442017-09-25 17:03:12 +03001095
1096 /* Prepare context */
Przemek Stekiel476d9c42022-05-19 12:26:33 +02001097#if !defined(MBEDTLS_USE_PSA_CRYPO) || !defined(MBEDTLS_TEST_DEPRECATED)
Hanno Beckere43164e2018-11-12 12:46:35 +00001098 (void) use_psa;
1099#else
1100 if( use_psa == 1 )
1101 {
Gilles Peskine5386f6b2019-08-01 12:47:40 +02001102 PSA_ASSERT( psa_crypto_init( ) );
Hanno Beckere43164e2018-11-12 12:46:35 +00001103 TEST_ASSERT( 0 == mbedtls_cipher_setup_psa( &ctx,
Hanno Beckera13272d2018-11-12 16:27:30 +00001104 mbedtls_cipher_info_from_type( cipher_id ), 0 ) );
Hanno Beckere43164e2018-11-12 12:46:35 +00001105 }
1106 else
Przemek Stekiel476d9c42022-05-19 12:26:33 +02001107#endif /* !MBEDTLS_USE_PSA_CRYPTO || !MBEDTLS_TEST_DEPRECATED*/
Ron Eldor7b012442017-09-25 17:03:12 +03001108 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx,
Hanno Beckera13272d2018-11-12 16:27:30 +00001109 mbedtls_cipher_info_from_type( cipher_id ) ) );
Ron Eldor7b012442017-09-25 17:03:12 +03001110
Ronald Cron9ed40732020-06-25 09:03:34 +02001111 TEST_ASSERT( 0 == mbedtls_cipher_setkey( &ctx, key->x, 8 * key->len, operation ) );
Ron Eldor7b012442017-09-25 17:03:12 +03001112 if( MBEDTLS_MODE_CBC == ctx.cipher_info->mode )
1113 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx, MBEDTLS_PADDING_NONE ) );
1114
Ronald Cron9ed40732020-06-25 09:03:34 +02001115 TEST_ASSERT( finish_result == mbedtls_cipher_crypt( &ctx, iv->len ? iv->x : NULL,
1116 iv->len, input->x, input->len,
Ron Eldor7b012442017-09-25 17:03:12 +03001117 output, &outlen ) );
Ronald Cron9ed40732020-06-25 09:03:34 +02001118 TEST_ASSERT( result->len == outlen );
Ron Eldor7b012442017-09-25 17:03:12 +03001119 /* check plaintext only if everything went fine */
1120 if( 0 == finish_result )
Ronald Cron9ed40732020-06-25 09:03:34 +02001121 TEST_ASSERT( 0 == memcmp( output, result->x, outlen ) );
Ron Eldor7b012442017-09-25 17:03:12 +03001122
1123exit:
1124 mbedtls_cipher_free( &ctx );
Przemek Stekiel476d9c42022-05-19 12:26:33 +02001125#if defined(MBEDTLS_USE_PSA_CRYPO) && defined(MBEDTLS_TEST_DEPRECATED)
Gilles Peskine5386f6b2019-08-01 12:47:40 +02001126 PSA_DONE( );
Przemek Stekiel476d9c42022-05-19 12:26:33 +02001127#endif /* MBEDTLS_USE_PSA_CRYPTO && defined(MBEDTLS_TEST_DEPRECATED */
Ron Eldor7b012442017-09-25 17:03:12 +03001128}
1129/* END_CASE */
1130
1131/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_WITH_PADDING */
Paul Bakker33b43f12013-08-20 11:48:36 +02001132void set_padding( int cipher_id, int pad_mode, int ret )
Paul Bakkerdbd443d2013-08-16 13:38:47 +02001133{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001134 const mbedtls_cipher_info_t *cipher_info;
1135 mbedtls_cipher_context_t ctx;
Manuel Pégourié-Gonnardd5fdcaf2013-07-24 18:05:00 +02001136
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001137 mbedtls_cipher_init( &ctx );
Paul Bakkerd2a2d612014-07-01 15:45:49 +02001138
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001139 cipher_info = mbedtls_cipher_info_from_type( cipher_id );
Manuel Pégourié-Gonnardd5fdcaf2013-07-24 18:05:00 +02001140 TEST_ASSERT( NULL != cipher_info );
Manuel Pégourié-Gonnard8473f872015-05-14 13:51:45 +02001141 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx, cipher_info ) );
Manuel Pégourié-Gonnardd5fdcaf2013-07-24 18:05:00 +02001142
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001143 TEST_ASSERT( ret == mbedtls_cipher_set_padding_mode( &ctx, pad_mode ) );
Manuel Pégourié-Gonnardd5fdcaf2013-07-24 18:05:00 +02001144
Paul Bakkerbd51b262014-07-10 15:26:12 +02001145exit:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001146 mbedtls_cipher_free( &ctx );
Paul Bakkerdbd443d2013-08-16 13:38:47 +02001147}
Paul Bakker33b43f12013-08-20 11:48:36 +02001148/* END_CASE */
Paul Bakker8123e9d2011-01-06 15:37:30 +00001149
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001150/* BEGIN_CASE depends_on:MBEDTLS_CIPHER_MODE_CBC */
Azim Khan5fcca462018-06-29 11:05:32 +01001151void check_padding( int pad_mode, data_t * input, int ret, int dlen_check
Azim Khand30ca132017-06-09 04:32:58 +01001152 )
Paul Bakkerdbd443d2013-08-16 13:38:47 +02001153{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001154 mbedtls_cipher_info_t cipher_info;
1155 mbedtls_cipher_context_t ctx;
Azim Khanf1aaec92017-05-30 14:23:15 +01001156 size_t dlen;
Manuel Pégourié-Gonnarda6408492013-07-26 10:55:02 +02001157
1158 /* build a fake context just for getting access to get_padding */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001159 mbedtls_cipher_init( &ctx );
1160 cipher_info.mode = MBEDTLS_MODE_CBC;
Manuel Pégourié-Gonnarda6408492013-07-26 10:55:02 +02001161 ctx.cipher_info = &cipher_info;
1162
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001163 TEST_ASSERT( 0 == mbedtls_cipher_set_padding_mode( &ctx, pad_mode ) );
Manuel Pégourié-Gonnarda6408492013-07-26 10:55:02 +02001164
Manuel Pégourié-Gonnarda6408492013-07-26 10:55:02 +02001165
Azim Khand30ca132017-06-09 04:32:58 +01001166 TEST_ASSERT( ret == ctx.get_padding( input->x, input->len, &dlen ) );
Paul Bakker33b43f12013-08-20 11:48:36 +02001167 if( 0 == ret )
1168 TEST_ASSERT( dlen == (size_t) dlen_check );
Paul Bakkerdbd443d2013-08-16 13:38:47 +02001169}
Paul Bakker33b43f12013-08-20 11:48:36 +02001170/* END_CASE */
Andrzej Kurek33ca6af2021-12-01 21:58:05 +01001171
1172/* BEGIN_CASE */
Thomas Daubney5dcbc4d2022-02-17 13:46:27 +00001173void iv_len_validity( int cipher_id, char * cipher_string,
Andrzej Kurek33ca6af2021-12-01 21:58:05 +01001174 int iv_len_val, int ret )
1175{
1176 size_t iv_len = iv_len_val;
1177 unsigned char iv[16];
1178
Thomas Daubney3a066ec2022-02-17 12:01:28 +00001179 /* Initialise iv buffer */
1180 memset( iv, 0, sizeof( iv ) );
1181
Andrzej Kurek33ca6af2021-12-01 21:58:05 +01001182 const mbedtls_cipher_info_t *cipher_info;
1183 mbedtls_cipher_context_t ctx_dec;
1184 mbedtls_cipher_context_t ctx_enc;
1185
1186 /*
1187 * Prepare contexts
1188 */
1189 mbedtls_cipher_init( &ctx_dec );
1190 mbedtls_cipher_init( &ctx_enc );
1191
1192 /* Check and get info structures */
1193 cipher_info = mbedtls_cipher_info_from_type( cipher_id );
1194 TEST_ASSERT( NULL != cipher_info );
1195 TEST_ASSERT( mbedtls_cipher_info_from_string( cipher_string ) == cipher_info );
1196 TEST_ASSERT( strcmp( mbedtls_cipher_info_get_name( cipher_info ),
1197 cipher_string ) == 0 );
1198
1199 /* Initialise enc and dec contexts */
1200 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_dec, cipher_info ) );
1201 TEST_ASSERT( 0 == mbedtls_cipher_setup( &ctx_enc, cipher_info ) );
1202
1203 TEST_ASSERT( ret == mbedtls_cipher_set_iv( &ctx_dec, iv, iv_len ) );
1204 TEST_ASSERT( ret == mbedtls_cipher_set_iv( &ctx_enc, iv, iv_len ) );
1205
1206exit:
1207 mbedtls_cipher_free( &ctx_dec );
1208 mbedtls_cipher_free( &ctx_enc );
1209}
1210/* END_CASE */