8590c2970ca6836d4cddc9eafcba6d5aa604440e
[reactos.git] / reactos / dll / 3rdparty / mbedtls / ccm.c
1 /*
2 * NIST SP800-38C compliant CCM implementation
3 *
4 * Copyright (C) 2014, ARM Limited, All Rights Reserved
5 *
6 * This file is part of mbed TLS (https://polarssl.org)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23 /*
24 * Definition of CCM:
25 * http://csrc.nist.gov/publications/nistpubs/800-38C/SP800-38C_updated-July20_2007.pdf
26 * RFC 3610 "Counter with CBC-MAC (CCM)"
27 *
28 * Related:
29 * RFC 5116 "An Interface and Algorithms for Authenticated Encryption"
30 */
31
32 #if !defined(POLARSSL_CONFIG_FILE)
33 #include "polarssl/config.h"
34 #else
35 #include POLARSSL_CONFIG_FILE
36 #endif
37
38 #if defined(POLARSSL_CCM_C)
39
40 #include "polarssl/ccm.h"
41
42 /* Implementation that should never be optimized out by the compiler */
43 static void polarssl_zeroize( void *v, size_t n ) {
44 volatile unsigned char *p = v; while( n-- ) *p++ = 0;
45 }
46
47 #define CCM_ENCRYPT 0
48 #define CCM_DECRYPT 1
49
50 /*
51 * Initialize context
52 */
53 int ccm_init( ccm_context *ctx, cipher_id_t cipher,
54 const unsigned char *key, unsigned int keysize )
55 {
56 int ret;
57 const cipher_info_t *cipher_info;
58
59 memset( ctx, 0, sizeof( ccm_context ) );
60
61 cipher_init( &ctx->cipher_ctx );
62
63 cipher_info = cipher_info_from_values( cipher, keysize, POLARSSL_MODE_ECB );
64 if( cipher_info == NULL )
65 return( POLARSSL_ERR_CCM_BAD_INPUT );
66
67 if( cipher_info->block_size != 16 )
68 return( POLARSSL_ERR_CCM_BAD_INPUT );
69
70 if( ( ret = cipher_init_ctx( &ctx->cipher_ctx, cipher_info ) ) != 0 )
71 return( ret );
72
73 if( ( ret = cipher_setkey( &ctx->cipher_ctx, key, keysize,
74 POLARSSL_ENCRYPT ) ) != 0 )
75 {
76 return( ret );
77 }
78
79 return( 0 );
80 }
81
82 /*
83 * Free context
84 */
85 void ccm_free( ccm_context *ctx )
86 {
87 cipher_free( &ctx->cipher_ctx );
88 polarssl_zeroize( ctx, sizeof( ccm_context ) );
89 }
90
91 /*
92 * Macros for common operations.
93 * Results in smaller compiled code than static inline functions.
94 */
95
96 /*
97 * Update the CBC-MAC state in y using a block in b
98 * (Always using b as the source helps the compiler optimise a bit better.)
99 */
100 #define UPDATE_CBC_MAC \
101 for( i = 0; i < 16; i++ ) \
102 y[i] ^= b[i]; \
103 \
104 if( ( ret = cipher_update( &ctx->cipher_ctx, y, 16, y, &olen ) ) != 0 ) \
105 return( ret );
106
107 /*
108 * Encrypt or decrypt a partial block with CTR
109 * Warning: using b for temporary storage! src and dst must not be b!
110 * This avoids allocating one more 16 bytes buffer while allowing src == dst.
111 */
112 #define CTR_CRYPT( dst, src, len ) \
113 if( ( ret = cipher_update( &ctx->cipher_ctx, ctr, 16, b, &olen ) ) != 0 ) \
114 return( ret ); \
115 \
116 for( i = 0; i < len; i++ ) \
117 dst[i] = src[i] ^ b[i];
118
119 /*
120 * Authenticated encryption or decryption
121 */
122 static int ccm_auth_crypt( ccm_context *ctx, int mode, size_t length,
123 const unsigned char *iv, size_t iv_len,
124 const unsigned char *add, size_t add_len,
125 const unsigned char *input, unsigned char *output,
126 unsigned char *tag, size_t tag_len )
127 {
128 int ret;
129 unsigned char i;
130 unsigned char q = 16 - 1 - iv_len;
131 size_t len_left, olen;
132 unsigned char b[16];
133 unsigned char y[16];
134 unsigned char ctr[16];
135 const unsigned char *src;
136 unsigned char *dst;
137
138 /*
139 * Check length requirements: SP800-38C A.1
140 * Additional requirement: a < 2^16 - 2^8 to simplify the code.
141 * 'length' checked later (when writing it to the first block)
142 */
143 if( tag_len < 4 || tag_len > 16 || tag_len % 2 != 0 )
144 return( POLARSSL_ERR_CCM_BAD_INPUT );
145
146 /* Also implies q is within bounds */
147 if( iv_len < 7 || iv_len > 13 )
148 return( POLARSSL_ERR_CCM_BAD_INPUT );
149
150 if( add_len > 0xFF00 )
151 return( POLARSSL_ERR_CCM_BAD_INPUT );
152
153 /*
154 * First block B_0:
155 * 0 .. 0 flags
156 * 1 .. iv_len nonce (aka iv)
157 * iv_len+1 .. 15 length
158 *
159 * With flags as (bits):
160 * 7 0
161 * 6 add present?
162 * 5 .. 3 (t - 2) / 2
163 * 2 .. 0 q - 1
164 */
165 b[0] = 0;
166 b[0] |= ( add_len > 0 ) << 6;
167 b[0] |= ( ( tag_len - 2 ) / 2 ) << 3;
168 b[0] |= q - 1;
169
170 memcpy( b + 1, iv, iv_len );
171
172 for( i = 0, len_left = length; i < q; i++, len_left >>= 8 )
173 b[15-i] = (unsigned char)( len_left & 0xFF );
174
175 if( len_left > 0 )
176 return( POLARSSL_ERR_CCM_BAD_INPUT );
177
178
179 /* Start CBC-MAC with first block */
180 memset( y, 0, 16 );
181 UPDATE_CBC_MAC;
182
183 /*
184 * If there is additional data, update CBC-MAC with
185 * add_len, add, 0 (padding to a block boundary)
186 */
187 if( add_len > 0 )
188 {
189 size_t use_len;
190 len_left = add_len;
191 src = add;
192
193 memset( b, 0, 16 );
194 b[0] = (unsigned char)( ( add_len >> 8 ) & 0xFF );
195 b[1] = (unsigned char)( ( add_len ) & 0xFF );
196
197 use_len = len_left < 16 - 2 ? len_left : 16 - 2;
198 memcpy( b + 2, src, use_len );
199 len_left -= use_len;
200 src += use_len;
201
202 UPDATE_CBC_MAC;
203
204 while( len_left > 0 )
205 {
206 use_len = len_left > 16 ? 16 : len_left;
207
208 memset( b, 0, 16 );
209 memcpy( b, src, use_len );
210 UPDATE_CBC_MAC;
211
212 len_left -= use_len;
213 src += use_len;
214 }
215 }
216
217 /*
218 * Prepare counter block for encryption:
219 * 0 .. 0 flags
220 * 1 .. iv_len nonce (aka iv)
221 * iv_len+1 .. 15 counter (initially 1)
222 *
223 * With flags as (bits):
224 * 7 .. 3 0
225 * 2 .. 0 q - 1
226 */
227 ctr[0] = q - 1;
228 memcpy( ctr + 1, iv, iv_len );
229 memset( ctr + 1 + iv_len, 0, q );
230 ctr[15] = 1;
231
232 /*
233 * Authenticate and {en,de}crypt the message.
234 *
235 * The only difference between encryption and decryption is
236 * the respective order of authentication and {en,de}cryption.
237 */
238 len_left = length;
239 src = input;
240 dst = output;
241
242 while( len_left > 0 )
243 {
244 unsigned char use_len = len_left > 16 ? 16 : len_left;
245
246 if( mode == CCM_ENCRYPT )
247 {
248 memset( b, 0, 16 );
249 memcpy( b, src, use_len );
250 UPDATE_CBC_MAC;
251 }
252
253 CTR_CRYPT( dst, src, use_len );
254
255 if( mode == CCM_DECRYPT )
256 {
257 memset( b, 0, 16 );
258 memcpy( b, dst, use_len );
259 UPDATE_CBC_MAC;
260 }
261
262 dst += use_len;
263 src += use_len;
264 len_left -= use_len;
265
266 /*
267 * Increment counter.
268 * No need to check for overflow thanks to the length check above.
269 */
270 for( i = 0; i < q; i++ )
271 if( ++ctr[15-i] != 0 )
272 break;
273 }
274
275 /*
276 * Authentication: reset counter and crypt/mask internal tag
277 */
278 for( i = 0; i < q; i++ )
279 ctr[15-i] = 0;
280
281 CTR_CRYPT( y, y, 16 );
282 memcpy( tag, y, tag_len );
283
284 return( 0 );
285 }
286
287 /*
288 * Authenticated encryption
289 */
290 int ccm_encrypt_and_tag( ccm_context *ctx, size_t length,
291 const unsigned char *iv, size_t iv_len,
292 const unsigned char *add, size_t add_len,
293 const unsigned char *input, unsigned char *output,
294 unsigned char *tag, size_t tag_len )
295 {
296 return( ccm_auth_crypt( ctx, CCM_ENCRYPT, length, iv, iv_len,
297 add, add_len, input, output, tag, tag_len ) );
298 }
299
300 /*
301 * Authenticated decryption
302 */
303 int ccm_auth_decrypt( ccm_context *ctx, size_t length,
304 const unsigned char *iv, size_t iv_len,
305 const unsigned char *add, size_t add_len,
306 const unsigned char *input, unsigned char *output,
307 const unsigned char *tag, size_t tag_len )
308 {
309 int ret;
310 unsigned char check_tag[16];
311 unsigned char i;
312 int diff;
313
314 if( ( ret = ccm_auth_crypt( ctx, CCM_DECRYPT, length,
315 iv, iv_len, add, add_len,
316 input, output, check_tag, tag_len ) ) != 0 )
317 {
318 return( ret );
319 }
320
321 /* Check tag in "constant-time" */
322 for( diff = 0, i = 0; i < tag_len; i++ )
323 diff |= tag[i] ^ check_tag[i];
324
325 if( diff != 0 )
326 {
327 polarssl_zeroize( output, length );
328 return( POLARSSL_ERR_CCM_AUTH_FAILED );
329 }
330
331 return( 0 );
332 }
333
334
335 #if defined(POLARSSL_SELF_TEST) && defined(POLARSSL_AES_C)
336
337 #if defined(POLARSSL_PLATFORM_C)
338 #include "polarssl/platform.h"
339 #else
340 #include <stdio.h>
341 #define polarssl_printf printf
342 #endif
343
344 /*
345 * Examples 1 to 3 from SP800-38C Appendix C
346 */
347
348 #define NB_TESTS 3
349
350 /*
351 * The data is the same for all tests, only the used length changes
352 */
353 static const unsigned char key[] = {
354 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,
355 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f
356 };
357
358 static const unsigned char iv[] = {
359 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
360 0x18, 0x19, 0x1a, 0x1b
361 };
362
363 static const unsigned char ad[] = {
364 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
365 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
366 0x10, 0x11, 0x12, 0x13
367 };
368
369 static const unsigned char msg[] = {
370 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,
371 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
372 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,
373 };
374
375 static const size_t iv_len [NB_TESTS] = { 7, 8, 12 };
376 static const size_t add_len[NB_TESTS] = { 8, 16, 20 };
377 static const size_t msg_len[NB_TESTS] = { 4, 16, 24 };
378 static const size_t tag_len[NB_TESTS] = { 4, 6, 8 };
379
380 static const unsigned char res[NB_TESTS][32] = {
381 { 0x71, 0x62, 0x01, 0x5b, 0x4d, 0xac, 0x25, 0x5d },
382 { 0xd2, 0xa1, 0xf0, 0xe0, 0x51, 0xea, 0x5f, 0x62,
383 0x08, 0x1a, 0x77, 0x92, 0x07, 0x3d, 0x59, 0x3d,
384 0x1f, 0xc6, 0x4f, 0xbf, 0xac, 0xcd },
385 { 0xe3, 0xb2, 0x01, 0xa9, 0xf5, 0xb7, 0x1a, 0x7a,
386 0x9b, 0x1c, 0xea, 0xec, 0xcd, 0x97, 0xe7, 0x0b,
387 0x61, 0x76, 0xaa, 0xd9, 0xa4, 0x42, 0x8a, 0xa5,
388 0x48, 0x43, 0x92, 0xfb, 0xc1, 0xb0, 0x99, 0x51 }
389 };
390
391 int ccm_self_test( int verbose )
392 {
393 ccm_context ctx;
394 unsigned char out[32];
395 size_t i;
396 int ret;
397
398 if( ccm_init( &ctx, POLARSSL_CIPHER_ID_AES, key, 8 * sizeof key ) != 0 )
399 {
400 if( verbose != 0 )
401 polarssl_printf( " CCM: setup failed" );
402
403 return( 1 );
404 }
405
406 for( i = 0; i < NB_TESTS; i++ )
407 {
408 if( verbose != 0 )
409 polarssl_printf( " CCM-AES #%u: ", (unsigned int) i + 1 );
410
411 ret = ccm_encrypt_and_tag( &ctx, msg_len[i],
412 iv, iv_len[i], ad, add_len[i],
413 msg, out,
414 out + msg_len[i], tag_len[i] );
415
416 if( ret != 0 ||
417 memcmp( out, res[i], msg_len[i] + tag_len[i] ) != 0 )
418 {
419 if( verbose != 0 )
420 polarssl_printf( "failed\n" );
421
422 return( 1 );
423 }
424
425 ret = ccm_auth_decrypt( &ctx, msg_len[i],
426 iv, iv_len[i], ad, add_len[i],
427 res[i], out,
428 res[i] + msg_len[i], tag_len[i] );
429
430 if( ret != 0 ||
431 memcmp( out, msg, msg_len[i] ) != 0 )
432 {
433 if( verbose != 0 )
434 polarssl_printf( "failed\n" );
435
436 return( 1 );
437 }
438
439 if( verbose != 0 )
440 polarssl_printf( "passed\n" );
441 }
442
443 ccm_free( &ctx );
444
445 if( verbose != 0 )
446 polarssl_printf( "\n" );
447
448 return( 0 );
449 }
450
451 #endif /* POLARSSL_SELF_TEST && POLARSSL_AES_C */
452
453 #endif /* POLARSSL_CCM_C */