/src/mbedtls/library/cipher.c
Line | Count | Source (jump to first uncovered line) |
1 | | /** |
2 | | * \file cipher.c |
3 | | * |
4 | | * \brief Generic cipher wrapper for Mbed TLS |
5 | | * |
6 | | * \author Adriaan de Jong <dejong@fox-it.com> |
7 | | * |
8 | | * Copyright The Mbed TLS Contributors |
9 | | * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later |
10 | | */ |
11 | | |
12 | | #include "common.h" |
13 | | |
14 | | #if defined(MBEDTLS_CIPHER_C) |
15 | | |
16 | | #include "mbedtls/cipher.h" |
17 | | #include "cipher_invasive.h" |
18 | | #include "cipher_wrap.h" |
19 | | #include "mbedtls/platform_util.h" |
20 | | #include "mbedtls/error.h" |
21 | | #include "mbedtls/constant_time.h" |
22 | | #include "constant_time_internal.h" |
23 | | |
24 | | #include <stdlib.h> |
25 | | #include <string.h> |
26 | | |
27 | | #if defined(MBEDTLS_CHACHAPOLY_C) |
28 | | #include "mbedtls/chachapoly.h" |
29 | | #endif |
30 | | |
31 | | #if defined(MBEDTLS_GCM_C) |
32 | | #include "mbedtls/gcm.h" |
33 | | #endif |
34 | | |
35 | | #if defined(MBEDTLS_CCM_C) |
36 | | #include "mbedtls/ccm.h" |
37 | | #endif |
38 | | |
39 | | #if defined(MBEDTLS_CHACHA20_C) |
40 | | #include "mbedtls/chacha20.h" |
41 | | #endif |
42 | | |
43 | | #if defined(MBEDTLS_CMAC_C) |
44 | | #include "mbedtls/cmac.h" |
45 | | #endif |
46 | | |
47 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
48 | | #include "psa/crypto.h" |
49 | | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
50 | | |
51 | | #if defined(MBEDTLS_NIST_KW_C) |
52 | | #include "mbedtls/nist_kw.h" |
53 | | #endif |
54 | | |
55 | | #include "mbedtls/platform.h" |
56 | | |
57 | | static int supported_init = 0; |
58 | | |
59 | | static inline const mbedtls_cipher_base_t *mbedtls_cipher_get_base( |
60 | | const mbedtls_cipher_info_t *info) |
61 | 71.6k | { |
62 | 71.6k | return mbedtls_cipher_base_lookup_table[info->base_idx]; |
63 | 71.6k | } |
64 | | |
65 | | const int *mbedtls_cipher_list(void) |
66 | 0 | { |
67 | 0 | const mbedtls_cipher_definition_t *def; |
68 | 0 | int *type; |
69 | |
|
70 | 0 | if (!supported_init) { |
71 | 0 | def = mbedtls_cipher_definitions; |
72 | 0 | type = mbedtls_cipher_supported; |
73 | |
|
74 | 0 | while (def->type != 0) { |
75 | 0 | *type++ = (*def++).type; |
76 | 0 | } |
77 | |
|
78 | 0 | *type = 0; |
79 | |
|
80 | 0 | supported_init = 1; |
81 | 0 | } |
82 | |
|
83 | 0 | return mbedtls_cipher_supported; |
84 | 0 | } |
85 | | |
86 | | const mbedtls_cipher_info_t *mbedtls_cipher_info_from_type( |
87 | | const mbedtls_cipher_type_t cipher_type) |
88 | 2.85k | { |
89 | 2.85k | const mbedtls_cipher_definition_t *def; |
90 | | |
91 | 107k | for (def = mbedtls_cipher_definitions; def->info != NULL; def++) { |
92 | 107k | if (def->type == cipher_type) { |
93 | 2.85k | return def->info; |
94 | 2.85k | } |
95 | 107k | } |
96 | | |
97 | 0 | return NULL; |
98 | 2.85k | } |
99 | | |
100 | | const mbedtls_cipher_info_t *mbedtls_cipher_info_from_string( |
101 | | const char *cipher_name) |
102 | 0 | { |
103 | 0 | const mbedtls_cipher_definition_t *def; |
104 | |
|
105 | 0 | if (NULL == cipher_name) { |
106 | 0 | return NULL; |
107 | 0 | } |
108 | | |
109 | 0 | for (def = mbedtls_cipher_definitions; def->info != NULL; def++) { |
110 | 0 | if (!strcmp(def->info->name, cipher_name)) { |
111 | 0 | return def->info; |
112 | 0 | } |
113 | 0 | } |
114 | | |
115 | 0 | return NULL; |
116 | 0 | } |
117 | | |
118 | | const mbedtls_cipher_info_t *mbedtls_cipher_info_from_values( |
119 | | const mbedtls_cipher_id_t cipher_id, |
120 | | int key_bitlen, |
121 | | const mbedtls_cipher_mode_t mode) |
122 | 2.14k | { |
123 | 2.14k | const mbedtls_cipher_definition_t *def; |
124 | | |
125 | 10.5k | for (def = mbedtls_cipher_definitions; def->info != NULL; def++) { |
126 | 10.5k | if (mbedtls_cipher_get_base(def->info)->cipher == cipher_id && |
127 | 10.5k | mbedtls_cipher_info_get_key_bitlen(def->info) == (unsigned) key_bitlen && |
128 | 10.5k | def->info->mode == mode) { |
129 | 2.14k | return def->info; |
130 | 2.14k | } |
131 | 10.5k | } |
132 | | |
133 | 0 | return NULL; |
134 | 2.14k | } |
135 | | |
136 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
137 | | static inline psa_key_type_t mbedtls_psa_translate_cipher_type( |
138 | | mbedtls_cipher_type_t cipher) |
139 | 0 | { |
140 | 0 | switch (cipher) { |
141 | 0 | case MBEDTLS_CIPHER_AES_128_CCM: |
142 | 0 | case MBEDTLS_CIPHER_AES_192_CCM: |
143 | 0 | case MBEDTLS_CIPHER_AES_256_CCM: |
144 | 0 | case MBEDTLS_CIPHER_AES_128_CCM_STAR_NO_TAG: |
145 | 0 | case MBEDTLS_CIPHER_AES_192_CCM_STAR_NO_TAG: |
146 | 0 | case MBEDTLS_CIPHER_AES_256_CCM_STAR_NO_TAG: |
147 | 0 | case MBEDTLS_CIPHER_AES_128_GCM: |
148 | 0 | case MBEDTLS_CIPHER_AES_192_GCM: |
149 | 0 | case MBEDTLS_CIPHER_AES_256_GCM: |
150 | 0 | case MBEDTLS_CIPHER_AES_128_CBC: |
151 | 0 | case MBEDTLS_CIPHER_AES_192_CBC: |
152 | 0 | case MBEDTLS_CIPHER_AES_256_CBC: |
153 | 0 | case MBEDTLS_CIPHER_AES_128_ECB: |
154 | 0 | case MBEDTLS_CIPHER_AES_192_ECB: |
155 | 0 | case MBEDTLS_CIPHER_AES_256_ECB: |
156 | 0 | return PSA_KEY_TYPE_AES; |
157 | | |
158 | | /* ARIA not yet supported in PSA. */ |
159 | | /* case MBEDTLS_CIPHER_ARIA_128_CCM: |
160 | | case MBEDTLS_CIPHER_ARIA_192_CCM: |
161 | | case MBEDTLS_CIPHER_ARIA_256_CCM: |
162 | | case MBEDTLS_CIPHER_ARIA_128_CCM_STAR_NO_TAG: |
163 | | case MBEDTLS_CIPHER_ARIA_192_CCM_STAR_NO_TAG: |
164 | | case MBEDTLS_CIPHER_ARIA_256_CCM_STAR_NO_TAG: |
165 | | case MBEDTLS_CIPHER_ARIA_128_GCM: |
166 | | case MBEDTLS_CIPHER_ARIA_192_GCM: |
167 | | case MBEDTLS_CIPHER_ARIA_256_GCM: |
168 | | case MBEDTLS_CIPHER_ARIA_128_CBC: |
169 | | case MBEDTLS_CIPHER_ARIA_192_CBC: |
170 | | case MBEDTLS_CIPHER_ARIA_256_CBC: |
171 | | return( PSA_KEY_TYPE_ARIA ); */ |
172 | | |
173 | 0 | default: |
174 | 0 | return 0; |
175 | 0 | } |
176 | 0 | } |
177 | | |
178 | | static inline psa_algorithm_t mbedtls_psa_translate_cipher_mode( |
179 | | mbedtls_cipher_mode_t mode, size_t taglen) |
180 | 0 | { |
181 | 0 | switch (mode) { |
182 | 0 | case MBEDTLS_MODE_ECB: |
183 | 0 | return PSA_ALG_ECB_NO_PADDING; |
184 | 0 | case MBEDTLS_MODE_GCM: |
185 | 0 | return PSA_ALG_AEAD_WITH_SHORTENED_TAG(PSA_ALG_GCM, taglen); |
186 | 0 | case MBEDTLS_MODE_CCM: |
187 | 0 | return PSA_ALG_AEAD_WITH_SHORTENED_TAG(PSA_ALG_CCM, taglen); |
188 | 0 | case MBEDTLS_MODE_CCM_STAR_NO_TAG: |
189 | 0 | return PSA_ALG_CCM_STAR_NO_TAG; |
190 | 0 | case MBEDTLS_MODE_CBC: |
191 | 0 | if (taglen == 0) { |
192 | 0 | return PSA_ALG_CBC_NO_PADDING; |
193 | 0 | } else { |
194 | 0 | return 0; |
195 | 0 | } |
196 | 0 | default: |
197 | 0 | return 0; |
198 | 0 | } |
199 | 0 | } |
200 | | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
201 | | |
202 | | void mbedtls_cipher_init(mbedtls_cipher_context_t *ctx) |
203 | 19.4k | { |
204 | 19.4k | memset(ctx, 0, sizeof(mbedtls_cipher_context_t)); |
205 | 19.4k | } |
206 | | |
207 | | void mbedtls_cipher_free(mbedtls_cipher_context_t *ctx) |
208 | 27.0k | { |
209 | 27.0k | if (ctx == NULL) { |
210 | 0 | return; |
211 | 0 | } |
212 | | |
213 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
214 | | if (ctx->psa_enabled == 1) { |
215 | | if (ctx->cipher_ctx != NULL) { |
216 | | mbedtls_cipher_context_psa * const cipher_psa = |
217 | | (mbedtls_cipher_context_psa *) ctx->cipher_ctx; |
218 | | |
219 | | if (cipher_psa->slot_state == MBEDTLS_CIPHER_PSA_KEY_OWNED) { |
220 | | /* xxx_free() doesn't allow to return failures. */ |
221 | | (void) psa_destroy_key(cipher_psa->slot); |
222 | | } |
223 | | |
224 | | mbedtls_zeroize_and_free(cipher_psa, sizeof(*cipher_psa)); |
225 | | } |
226 | | |
227 | | mbedtls_platform_zeroize(ctx, sizeof(mbedtls_cipher_context_t)); |
228 | | return; |
229 | | } |
230 | | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
231 | | |
232 | 27.0k | #if defined(MBEDTLS_CMAC_C) |
233 | 27.0k | if (ctx->cmac_ctx) { |
234 | 0 | mbedtls_zeroize_and_free(ctx->cmac_ctx, |
235 | 0 | sizeof(mbedtls_cmac_context_t)); |
236 | 0 | } |
237 | 27.0k | #endif |
238 | | |
239 | 27.0k | if (ctx->cipher_ctx) { |
240 | 5.63k | mbedtls_cipher_get_base(ctx->cipher_info)->ctx_free_func(ctx->cipher_ctx); |
241 | 5.63k | } |
242 | | |
243 | 27.0k | mbedtls_platform_zeroize(ctx, sizeof(mbedtls_cipher_context_t)); |
244 | 27.0k | } |
245 | | |
246 | | int mbedtls_cipher_setup(mbedtls_cipher_context_t *ctx, |
247 | | const mbedtls_cipher_info_t *cipher_info) |
248 | 5.63k | { |
249 | 5.63k | if (cipher_info == NULL) { |
250 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
251 | 0 | } |
252 | | |
253 | 5.63k | memset(ctx, 0, sizeof(mbedtls_cipher_context_t)); |
254 | | |
255 | 5.63k | if (mbedtls_cipher_get_base(cipher_info)->ctx_alloc_func != NULL) { |
256 | 5.63k | ctx->cipher_ctx = mbedtls_cipher_get_base(cipher_info)->ctx_alloc_func(); |
257 | 5.63k | if (ctx->cipher_ctx == NULL) { |
258 | 0 | return MBEDTLS_ERR_CIPHER_ALLOC_FAILED; |
259 | 0 | } |
260 | 5.63k | } |
261 | | |
262 | 5.63k | ctx->cipher_info = cipher_info; |
263 | | |
264 | 5.63k | return 0; |
265 | 5.63k | } |
266 | | |
267 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
268 | | int mbedtls_cipher_setup_psa(mbedtls_cipher_context_t *ctx, |
269 | | const mbedtls_cipher_info_t *cipher_info, |
270 | | size_t taglen) |
271 | 0 | { |
272 | 0 | psa_algorithm_t alg; |
273 | 0 | mbedtls_cipher_context_psa *cipher_psa; |
274 | |
|
275 | 0 | if (NULL == cipher_info || NULL == ctx) { |
276 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
277 | 0 | } |
278 | | |
279 | | /* Check that the underlying cipher mode and cipher type are |
280 | | * supported by the underlying PSA Crypto implementation. */ |
281 | 0 | alg = mbedtls_psa_translate_cipher_mode(((mbedtls_cipher_mode_t) cipher_info->mode), taglen); |
282 | 0 | if (alg == 0) { |
283 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
284 | 0 | } |
285 | 0 | if (mbedtls_psa_translate_cipher_type(((mbedtls_cipher_type_t) cipher_info->type)) == 0) { |
286 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
287 | 0 | } |
288 | | |
289 | 0 | memset(ctx, 0, sizeof(mbedtls_cipher_context_t)); |
290 | |
|
291 | 0 | cipher_psa = mbedtls_calloc(1, sizeof(mbedtls_cipher_context_psa)); |
292 | 0 | if (cipher_psa == NULL) { |
293 | 0 | return MBEDTLS_ERR_CIPHER_ALLOC_FAILED; |
294 | 0 | } |
295 | 0 | cipher_psa->alg = alg; |
296 | 0 | ctx->cipher_ctx = cipher_psa; |
297 | 0 | ctx->cipher_info = cipher_info; |
298 | 0 | ctx->psa_enabled = 1; |
299 | 0 | return 0; |
300 | 0 | } |
301 | | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
302 | | |
303 | | int mbedtls_cipher_setkey(mbedtls_cipher_context_t *ctx, |
304 | | const unsigned char *key, |
305 | | int key_bitlen, |
306 | | const mbedtls_operation_t operation) |
307 | 5.63k | { |
308 | 5.63k | if (operation != MBEDTLS_ENCRYPT && operation != MBEDTLS_DECRYPT) { |
309 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
310 | 0 | } |
311 | 5.63k | if (ctx->cipher_info == NULL) { |
312 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
313 | 0 | } |
314 | | #if defined(MBEDTLS_BLOCK_CIPHER_NO_DECRYPT) |
315 | | if (MBEDTLS_MODE_ECB == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) && |
316 | | MBEDTLS_DECRYPT == operation) { |
317 | | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
318 | | } |
319 | | #endif |
320 | | |
321 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
322 | 0 | if (ctx->psa_enabled == 1) { |
323 | 0 | mbedtls_cipher_context_psa * const cipher_psa = |
324 | 0 | (mbedtls_cipher_context_psa *) ctx->cipher_ctx; |
325 | | |
326 | | size_t const key_bytelen = ((size_t) key_bitlen + 7) / 8; |
327 | | |
328 | | psa_status_t status; |
329 | | psa_key_type_t key_type; |
330 | 0 | psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; |
331 | | |
332 | | /* PSA Crypto API only accepts byte-aligned keys. */ |
333 | 0 | if (key_bitlen % 8 != 0) { |
334 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
335 | 0 | } |
336 | | |
337 | | /* Don't allow keys to be set multiple times. */ |
338 | 0 | if (cipher_psa->slot_state != MBEDTLS_CIPHER_PSA_KEY_UNSET) { |
339 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
340 | 0 | } |
341 | | |
342 | 0 | key_type = mbedtls_psa_translate_cipher_type( |
343 | 0 | ((mbedtls_cipher_type_t) ctx->cipher_info->type)); |
344 | 0 | if (key_type == 0) { |
345 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
346 | 0 | } |
347 | 0 | psa_set_key_type(&attributes, key_type); |
348 | | |
349 | | /* Mbed TLS' cipher layer doesn't enforce the mode of operation |
350 | | * (encrypt vs. decrypt): it is possible to setup a key for encryption |
351 | | * and use it for AEAD decryption. Until tests relying on this |
352 | | * are changed, allow any usage in PSA. */ |
353 | 0 | psa_set_key_usage_flags(&attributes, |
354 | 0 | PSA_KEY_USAGE_ENCRYPT | PSA_KEY_USAGE_DECRYPT); |
355 | 0 | psa_set_key_algorithm(&attributes, cipher_psa->alg); |
356 | |
|
357 | 0 | status = psa_import_key(&attributes, key, key_bytelen, |
358 | 0 | &cipher_psa->slot); |
359 | 0 | switch (status) { |
360 | 0 | case PSA_SUCCESS: |
361 | 0 | break; |
362 | 0 | case PSA_ERROR_INSUFFICIENT_MEMORY: |
363 | 0 | return MBEDTLS_ERR_CIPHER_ALLOC_FAILED; |
364 | 0 | case PSA_ERROR_NOT_SUPPORTED: |
365 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
366 | 0 | default: |
367 | 0 | return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED; |
368 | 0 | } |
369 | | /* Indicate that we own the key slot and need to |
370 | | * destroy it in mbedtls_cipher_free(). */ |
371 | 0 | cipher_psa->slot_state = MBEDTLS_CIPHER_PSA_KEY_OWNED; |
372 | |
|
373 | 0 | ctx->key_bitlen = key_bitlen; |
374 | 0 | ctx->operation = operation; |
375 | 0 | return 0; |
376 | 0 | } |
377 | 0 | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
378 | | |
379 | 5.63k | if ((ctx->cipher_info->flags & MBEDTLS_CIPHER_VARIABLE_KEY_LEN) == 0 && |
380 | 5.63k | (int) mbedtls_cipher_info_get_key_bitlen(ctx->cipher_info) != key_bitlen) { |
381 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
382 | 0 | } |
383 | | |
384 | 5.63k | ctx->key_bitlen = key_bitlen; |
385 | 5.63k | ctx->operation = operation; |
386 | | |
387 | 5.63k | #if !defined(MBEDTLS_BLOCK_CIPHER_NO_DECRYPT) |
388 | | /* |
389 | | * For OFB, CFB and CTR mode always use the encryption key schedule |
390 | | */ |
391 | 5.63k | if (MBEDTLS_ENCRYPT == operation || |
392 | 5.63k | MBEDTLS_MODE_CFB == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || |
393 | 5.63k | MBEDTLS_MODE_OFB == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || |
394 | 5.63k | MBEDTLS_MODE_CTR == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
395 | 4.72k | return mbedtls_cipher_get_base(ctx->cipher_info)->setkey_enc_func(ctx->cipher_ctx, key, |
396 | 4.72k | ctx->key_bitlen); |
397 | 4.72k | } |
398 | | |
399 | 908 | if (MBEDTLS_DECRYPT == operation) { |
400 | 908 | return mbedtls_cipher_get_base(ctx->cipher_info)->setkey_dec_func(ctx->cipher_ctx, key, |
401 | 908 | ctx->key_bitlen); |
402 | 908 | } |
403 | | #else |
404 | | if (operation == MBEDTLS_ENCRYPT || operation == MBEDTLS_DECRYPT) { |
405 | | return mbedtls_cipher_get_base(ctx->cipher_info)->setkey_enc_func(ctx->cipher_ctx, key, |
406 | | ctx->key_bitlen); |
407 | | } |
408 | | #endif |
409 | | |
410 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
411 | 908 | } Line | Count | Source | 307 | 5.63k | { | 308 | 5.63k | if (operation != MBEDTLS_ENCRYPT && operation != MBEDTLS_DECRYPT) { | 309 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; | 310 | 0 | } | 311 | 5.63k | if (ctx->cipher_info == NULL) { | 312 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; | 313 | 0 | } | 314 | | #if defined(MBEDTLS_BLOCK_CIPHER_NO_DECRYPT) | 315 | | if (MBEDTLS_MODE_ECB == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) && | 316 | | MBEDTLS_DECRYPT == operation) { | 317 | | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; | 318 | | } | 319 | | #endif | 320 | | | 321 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) | 322 | | if (ctx->psa_enabled == 1) { | 323 | | mbedtls_cipher_context_psa * const cipher_psa = | 324 | | (mbedtls_cipher_context_psa *) ctx->cipher_ctx; | 325 | | | 326 | | size_t const key_bytelen = ((size_t) key_bitlen + 7) / 8; | 327 | | | 328 | | psa_status_t status; | 329 | | psa_key_type_t key_type; | 330 | | psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; | 331 | | | 332 | | /* PSA Crypto API only accepts byte-aligned keys. */ | 333 | | if (key_bitlen % 8 != 0) { | 334 | | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; | 335 | | } | 336 | | | 337 | | /* Don't allow keys to be set multiple times. */ | 338 | | if (cipher_psa->slot_state != MBEDTLS_CIPHER_PSA_KEY_UNSET) { | 339 | | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; | 340 | | } | 341 | | | 342 | | key_type = mbedtls_psa_translate_cipher_type( | 343 | | ((mbedtls_cipher_type_t) ctx->cipher_info->type)); | 344 | | if (key_type == 0) { | 345 | | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; | 346 | | } | 347 | | psa_set_key_type(&attributes, key_type); | 348 | | | 349 | | /* Mbed TLS' cipher layer doesn't enforce the mode of operation | 350 | | * (encrypt vs. decrypt): it is possible to setup a key for encryption | 351 | | * and use it for AEAD decryption. Until tests relying on this | 352 | | * are changed, allow any usage in PSA. */ | 353 | | psa_set_key_usage_flags(&attributes, | 354 | | PSA_KEY_USAGE_ENCRYPT | PSA_KEY_USAGE_DECRYPT); | 355 | | psa_set_key_algorithm(&attributes, cipher_psa->alg); | 356 | | | 357 | | status = psa_import_key(&attributes, key, key_bytelen, | 358 | | &cipher_psa->slot); | 359 | | switch (status) { | 360 | | case PSA_SUCCESS: | 361 | | break; | 362 | | case PSA_ERROR_INSUFFICIENT_MEMORY: | 363 | | return MBEDTLS_ERR_CIPHER_ALLOC_FAILED; | 364 | | case PSA_ERROR_NOT_SUPPORTED: | 365 | | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; | 366 | | default: | 367 | | return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED; | 368 | | } | 369 | | /* Indicate that we own the key slot and need to | 370 | | * destroy it in mbedtls_cipher_free(). */ | 371 | | cipher_psa->slot_state = MBEDTLS_CIPHER_PSA_KEY_OWNED; | 372 | | | 373 | | ctx->key_bitlen = key_bitlen; | 374 | | ctx->operation = operation; | 375 | | return 0; | 376 | | } | 377 | | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ | 378 | | | 379 | 5.63k | if ((ctx->cipher_info->flags & MBEDTLS_CIPHER_VARIABLE_KEY_LEN) == 0 && | 380 | 5.63k | (int) mbedtls_cipher_info_get_key_bitlen(ctx->cipher_info) != key_bitlen) { | 381 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; | 382 | 0 | } | 383 | | | 384 | 5.63k | ctx->key_bitlen = key_bitlen; | 385 | 5.63k | ctx->operation = operation; | 386 | | | 387 | 5.63k | #if !defined(MBEDTLS_BLOCK_CIPHER_NO_DECRYPT) | 388 | | /* | 389 | | * For OFB, CFB and CTR mode always use the encryption key schedule | 390 | | */ | 391 | 5.63k | if (MBEDTLS_ENCRYPT == operation || | 392 | 5.63k | MBEDTLS_MODE_CFB == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || | 393 | 5.63k | MBEDTLS_MODE_OFB == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || | 394 | 5.63k | MBEDTLS_MODE_CTR == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { | 395 | 4.72k | return mbedtls_cipher_get_base(ctx->cipher_info)->setkey_enc_func(ctx->cipher_ctx, key, | 396 | 4.72k | ctx->key_bitlen); | 397 | 4.72k | } | 398 | | | 399 | 908 | if (MBEDTLS_DECRYPT == operation) { | 400 | 908 | return mbedtls_cipher_get_base(ctx->cipher_info)->setkey_dec_func(ctx->cipher_ctx, key, | 401 | 908 | ctx->key_bitlen); | 402 | 908 | } | 403 | | #else | 404 | | if (operation == MBEDTLS_ENCRYPT || operation == MBEDTLS_DECRYPT) { | 405 | | return mbedtls_cipher_get_base(ctx->cipher_info)->setkey_enc_func(ctx->cipher_ctx, key, | 406 | | ctx->key_bitlen); | 407 | | } | 408 | | #endif | 409 | | | 410 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; | 411 | 908 | } |
Unexecuted instantiation: mbedtls_cipher_setkey |
412 | | |
413 | | int mbedtls_cipher_set_iv(mbedtls_cipher_context_t *ctx, |
414 | | const unsigned char *iv, |
415 | | size_t iv_len) |
416 | 7.12k | { |
417 | 7.12k | size_t actual_iv_size; |
418 | | |
419 | 7.12k | if (ctx->cipher_info == NULL) { |
420 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
421 | 0 | } |
422 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
423 | | if (ctx->psa_enabled == 1) { |
424 | | /* While PSA Crypto has an API for multipart |
425 | | * operations, we currently don't make it |
426 | | * accessible through the cipher layer. */ |
427 | | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
428 | | } |
429 | | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
430 | | |
431 | | /* avoid buffer overflow in ctx->iv */ |
432 | 7.12k | if (iv_len > MBEDTLS_MAX_IV_LENGTH) { |
433 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
434 | 0 | } |
435 | | |
436 | 7.12k | if ((ctx->cipher_info->flags & MBEDTLS_CIPHER_VARIABLE_IV_LEN) != 0) { |
437 | 0 | actual_iv_size = iv_len; |
438 | 7.12k | } else { |
439 | 7.12k | actual_iv_size = mbedtls_cipher_info_get_iv_size(ctx->cipher_info); |
440 | | |
441 | | /* avoid reading past the end of input buffer */ |
442 | 7.12k | if (actual_iv_size > iv_len) { |
443 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
444 | 0 | } |
445 | 7.12k | } |
446 | | |
447 | 7.12k | #if defined(MBEDTLS_CHACHA20_C) |
448 | 7.12k | if (((mbedtls_cipher_type_t) ctx->cipher_info->type) == MBEDTLS_CIPHER_CHACHA20) { |
449 | | /* Even though the actual_iv_size is overwritten with a correct value |
450 | | * of 12 from the cipher info, return an error to indicate that |
451 | | * the input iv_len is wrong. */ |
452 | 0 | if (iv_len != 12) { |
453 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
454 | 0 | } |
455 | | |
456 | 0 | if (0 != mbedtls_chacha20_starts((mbedtls_chacha20_context *) ctx->cipher_ctx, |
457 | 0 | iv, |
458 | 0 | 0U)) { /* Initial counter value */ |
459 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
460 | 0 | } |
461 | 0 | } |
462 | 7.12k | #if defined(MBEDTLS_CHACHAPOLY_C) |
463 | 7.12k | if (((mbedtls_cipher_type_t) ctx->cipher_info->type) == MBEDTLS_CIPHER_CHACHA20_POLY1305 && |
464 | 7.12k | iv_len != 12) { |
465 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
466 | 0 | } |
467 | 7.12k | #endif |
468 | 7.12k | #endif |
469 | | |
470 | 7.12k | #if defined(MBEDTLS_GCM_C) |
471 | 7.12k | if (MBEDTLS_MODE_GCM == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
472 | 0 | return mbedtls_gcm_starts((mbedtls_gcm_context *) ctx->cipher_ctx, |
473 | 0 | ctx->operation, |
474 | 0 | iv, iv_len); |
475 | 0 | } |
476 | 7.12k | #endif |
477 | | |
478 | 7.12k | #if defined(MBEDTLS_CCM_C) |
479 | 7.12k | if (MBEDTLS_MODE_CCM_STAR_NO_TAG == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
480 | 0 | int set_lengths_result; |
481 | 0 | int ccm_star_mode; |
482 | |
|
483 | 0 | set_lengths_result = mbedtls_ccm_set_lengths( |
484 | 0 | (mbedtls_ccm_context *) ctx->cipher_ctx, |
485 | 0 | 0, 0, 0); |
486 | 0 | if (set_lengths_result != 0) { |
487 | 0 | return set_lengths_result; |
488 | 0 | } |
489 | | |
490 | 0 | if (ctx->operation == MBEDTLS_DECRYPT) { |
491 | 0 | ccm_star_mode = MBEDTLS_CCM_STAR_DECRYPT; |
492 | 0 | } else if (ctx->operation == MBEDTLS_ENCRYPT) { |
493 | 0 | ccm_star_mode = MBEDTLS_CCM_STAR_ENCRYPT; |
494 | 0 | } else { |
495 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
496 | 0 | } |
497 | | |
498 | 0 | return mbedtls_ccm_starts((mbedtls_ccm_context *) ctx->cipher_ctx, |
499 | 0 | ccm_star_mode, |
500 | 0 | iv, iv_len); |
501 | 0 | } |
502 | 7.12k | #endif |
503 | | |
504 | 7.12k | if (actual_iv_size != 0) { |
505 | 7.12k | memcpy(ctx->iv, iv, actual_iv_size); |
506 | 7.12k | ctx->iv_size = actual_iv_size; |
507 | 7.12k | } |
508 | | |
509 | 7.12k | return 0; |
510 | 7.12k | } |
511 | | |
512 | | int mbedtls_cipher_reset(mbedtls_cipher_context_t *ctx) |
513 | 7.12k | { |
514 | 7.12k | if (ctx->cipher_info == NULL) { |
515 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
516 | 0 | } |
517 | | |
518 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
519 | 0 | if (ctx->psa_enabled == 1) { |
520 | | /* We don't support resetting PSA-based |
521 | | * cipher contexts, yet. */ |
522 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
523 | 0 | } |
524 | 0 | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
525 | | |
526 | 7.12k | ctx->unprocessed_len = 0; |
527 | | |
528 | 7.12k | return 0; |
529 | 0 | } Line | Count | Source | 513 | 7.12k | { | 514 | 7.12k | if (ctx->cipher_info == NULL) { | 515 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; | 516 | 0 | } | 517 | | | 518 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) | 519 | | if (ctx->psa_enabled == 1) { | 520 | | /* We don't support resetting PSA-based | 521 | | * cipher contexts, yet. */ | 522 | | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; | 523 | | } | 524 | | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ | 525 | | | 526 | 7.12k | ctx->unprocessed_len = 0; | 527 | | | 528 | 7.12k | return 0; | 529 | 7.12k | } |
Unexecuted instantiation: mbedtls_cipher_reset |
530 | | |
531 | | #if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C) |
532 | | int mbedtls_cipher_update_ad(mbedtls_cipher_context_t *ctx, |
533 | | const unsigned char *ad, size_t ad_len) |
534 | 0 | { |
535 | 0 | if (ctx->cipher_info == NULL) { |
536 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
537 | 0 | } |
538 | | |
539 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
540 | 0 | if (ctx->psa_enabled == 1) { |
541 | | /* While PSA Crypto has an API for multipart |
542 | | * operations, we currently don't make it |
543 | | * accessible through the cipher layer. */ |
544 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
545 | 0 | } |
546 | 0 | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
547 | | |
548 | 0 | #if defined(MBEDTLS_GCM_C) |
549 | 0 | if (MBEDTLS_MODE_GCM == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
550 | 0 | return mbedtls_gcm_update_ad((mbedtls_gcm_context *) ctx->cipher_ctx, |
551 | 0 | ad, ad_len); |
552 | 0 | } |
553 | 0 | #endif |
554 | | |
555 | 0 | #if defined(MBEDTLS_CHACHAPOLY_C) |
556 | 0 | if (MBEDTLS_CIPHER_CHACHA20_POLY1305 == ((mbedtls_cipher_type_t) ctx->cipher_info->type)) { |
557 | 0 | int result; |
558 | 0 | mbedtls_chachapoly_mode_t mode; |
559 | |
|
560 | 0 | mode = (ctx->operation == MBEDTLS_ENCRYPT) |
561 | 0 | ? MBEDTLS_CHACHAPOLY_ENCRYPT |
562 | 0 | : MBEDTLS_CHACHAPOLY_DECRYPT; |
563 | |
|
564 | 0 | result = mbedtls_chachapoly_starts((mbedtls_chachapoly_context *) ctx->cipher_ctx, |
565 | 0 | ctx->iv, |
566 | 0 | mode); |
567 | 0 | if (result != 0) { |
568 | 0 | return result; |
569 | 0 | } |
570 | | |
571 | 0 | return mbedtls_chachapoly_update_aad((mbedtls_chachapoly_context *) ctx->cipher_ctx, |
572 | 0 | ad, ad_len); |
573 | 0 | } |
574 | 0 | #endif |
575 | | |
576 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
577 | 0 | } Unexecuted instantiation: mbedtls_cipher_update_ad Unexecuted instantiation: mbedtls_cipher_update_ad |
578 | | #endif /* MBEDTLS_GCM_C || MBEDTLS_CHACHAPOLY_C */ |
579 | | |
580 | | int mbedtls_cipher_update(mbedtls_cipher_context_t *ctx, const unsigned char *input, |
581 | | size_t ilen, unsigned char *output, size_t *olen) |
582 | 38.5k | { |
583 | 38.5k | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
584 | 38.5k | size_t block_size; |
585 | | |
586 | 38.5k | if (ctx->cipher_info == NULL) { |
587 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
588 | 0 | } |
589 | | |
590 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
591 | 0 | if (ctx->psa_enabled == 1) { |
592 | | /* While PSA Crypto has an API for multipart |
593 | | * operations, we currently don't make it |
594 | | * accessible through the cipher layer. */ |
595 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
596 | 0 | } |
597 | 0 | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
598 | | |
599 | 38.5k | *olen = 0; |
600 | 38.5k | block_size = mbedtls_cipher_get_block_size(ctx); |
601 | 38.5k | if (0 == block_size) { |
602 | 0 | return MBEDTLS_ERR_CIPHER_INVALID_CONTEXT; |
603 | 0 | } |
604 | | |
605 | 38.5k | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_ECB) { |
606 | 31.3k | if (ilen != block_size) { |
607 | 0 | return MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED; |
608 | 0 | } |
609 | | |
610 | 31.3k | *olen = ilen; |
611 | | |
612 | 31.3k | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->ecb_func(ctx->cipher_ctx, |
613 | 31.3k | ctx->operation, input, |
614 | 31.3k | output))) { |
615 | 0 | return ret; |
616 | 0 | } |
617 | | |
618 | 31.3k | return 0; |
619 | 31.3k | } |
620 | | |
621 | 7.12k | #if defined(MBEDTLS_GCM_C) |
622 | 7.12k | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_GCM) { |
623 | 0 | return mbedtls_gcm_update((mbedtls_gcm_context *) ctx->cipher_ctx, |
624 | 0 | input, ilen, |
625 | 0 | output, ilen, olen); |
626 | 0 | } |
627 | 7.12k | #endif |
628 | | |
629 | 7.12k | #if defined(MBEDTLS_CCM_C) |
630 | 7.12k | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_CCM_STAR_NO_TAG) { |
631 | 0 | return mbedtls_ccm_update((mbedtls_ccm_context *) ctx->cipher_ctx, |
632 | 0 | input, ilen, |
633 | 0 | output, ilen, olen); |
634 | 0 | } |
635 | 7.12k | #endif |
636 | | |
637 | 7.12k | #if defined(MBEDTLS_CHACHAPOLY_C) |
638 | 7.12k | if (((mbedtls_cipher_type_t) ctx->cipher_info->type) == MBEDTLS_CIPHER_CHACHA20_POLY1305) { |
639 | 0 | *olen = ilen; |
640 | 0 | return mbedtls_chachapoly_update((mbedtls_chachapoly_context *) ctx->cipher_ctx, |
641 | 0 | ilen, input, output); |
642 | 0 | } |
643 | 7.12k | #endif |
644 | | |
645 | 7.12k | if (input == output && |
646 | 7.12k | (ctx->unprocessed_len != 0 || ilen % block_size)) { |
647 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
648 | 0 | } |
649 | | |
650 | 7.12k | #if defined(MBEDTLS_CIPHER_MODE_CBC) |
651 | 7.12k | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_CBC) { |
652 | 7.12k | size_t copy_len = 0; |
653 | | |
654 | | /* |
655 | | * If there is not enough data for a full block, cache it. |
656 | | */ |
657 | 7.12k | if ((ctx->operation == MBEDTLS_DECRYPT && NULL != ctx->add_padding && |
658 | 7.12k | ilen <= block_size - ctx->unprocessed_len) || |
659 | 7.12k | (ctx->operation == MBEDTLS_DECRYPT && NULL == ctx->add_padding && |
660 | 7.12k | ilen < block_size - ctx->unprocessed_len) || |
661 | 7.12k | (ctx->operation == MBEDTLS_ENCRYPT && |
662 | 7.12k | ilen < block_size - ctx->unprocessed_len)) { |
663 | 0 | memcpy(&(ctx->unprocessed_data[ctx->unprocessed_len]), input, |
664 | 0 | ilen); |
665 | |
|
666 | 0 | ctx->unprocessed_len += ilen; |
667 | 0 | return 0; |
668 | 0 | } |
669 | | |
670 | | /* |
671 | | * Process cached data first |
672 | | */ |
673 | 7.12k | if (0 != ctx->unprocessed_len) { |
674 | 0 | copy_len = block_size - ctx->unprocessed_len; |
675 | |
|
676 | 0 | memcpy(&(ctx->unprocessed_data[ctx->unprocessed_len]), input, |
677 | 0 | copy_len); |
678 | |
|
679 | 0 | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->cbc_func(ctx->cipher_ctx, |
680 | 0 | ctx->operation, |
681 | 0 | block_size, ctx->iv, |
682 | 0 | ctx-> |
683 | 0 | unprocessed_data, |
684 | 0 | output))) { |
685 | 0 | return ret; |
686 | 0 | } |
687 | | |
688 | 0 | *olen += block_size; |
689 | 0 | output += block_size; |
690 | 0 | ctx->unprocessed_len = 0; |
691 | |
|
692 | 0 | input += copy_len; |
693 | 0 | ilen -= copy_len; |
694 | 0 | } |
695 | | |
696 | | /* |
697 | | * Cache final, incomplete block |
698 | | */ |
699 | 7.12k | if (0 != ilen) { |
700 | | /* Encryption: only cache partial blocks |
701 | | * Decryption w/ padding: always keep at least one whole block |
702 | | * Decryption w/o padding: only cache partial blocks |
703 | | */ |
704 | 7.12k | copy_len = ilen % block_size; |
705 | 7.12k | if (copy_len == 0 && |
706 | 7.12k | ctx->operation == MBEDTLS_DECRYPT && |
707 | 7.12k | NULL != ctx->add_padding) { |
708 | 0 | copy_len = block_size; |
709 | 0 | } |
710 | | |
711 | 7.12k | memcpy(ctx->unprocessed_data, &(input[ilen - copy_len]), |
712 | 7.12k | copy_len); |
713 | | |
714 | 7.12k | ctx->unprocessed_len += copy_len; |
715 | 7.12k | ilen -= copy_len; |
716 | 7.12k | } |
717 | | |
718 | | /* |
719 | | * Process remaining full blocks |
720 | | */ |
721 | 7.12k | if (ilen) { |
722 | 7.12k | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->cbc_func(ctx->cipher_ctx, |
723 | 7.12k | ctx->operation, |
724 | 7.12k | ilen, ctx->iv, |
725 | 7.12k | input, |
726 | 7.12k | output))) { |
727 | 0 | return ret; |
728 | 0 | } |
729 | | |
730 | 7.12k | *olen += ilen; |
731 | 7.12k | } |
732 | | |
733 | 7.12k | return 0; |
734 | 7.12k | } |
735 | 0 | #endif /* MBEDTLS_CIPHER_MODE_CBC */ |
736 | | |
737 | 0 | #if defined(MBEDTLS_CIPHER_MODE_CFB) |
738 | 0 | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_CFB) { |
739 | 0 | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->cfb_func(ctx->cipher_ctx, |
740 | 0 | ctx->operation, ilen, |
741 | 0 | &ctx->unprocessed_len, |
742 | 0 | ctx->iv, |
743 | 0 | input, output))) { |
744 | 0 | return ret; |
745 | 0 | } |
746 | | |
747 | 0 | *olen = ilen; |
748 | |
|
749 | 0 | return 0; |
750 | 0 | } |
751 | 0 | #endif /* MBEDTLS_CIPHER_MODE_CFB */ |
752 | | |
753 | 0 | #if defined(MBEDTLS_CIPHER_MODE_OFB) |
754 | 0 | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_OFB) { |
755 | 0 | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->ofb_func(ctx->cipher_ctx, |
756 | 0 | ilen, |
757 | 0 | &ctx->unprocessed_len, |
758 | 0 | ctx->iv, |
759 | 0 | input, output))) { |
760 | 0 | return ret; |
761 | 0 | } |
762 | | |
763 | 0 | *olen = ilen; |
764 | |
|
765 | 0 | return 0; |
766 | 0 | } |
767 | 0 | #endif /* MBEDTLS_CIPHER_MODE_OFB */ |
768 | | |
769 | 0 | #if defined(MBEDTLS_CIPHER_MODE_CTR) |
770 | 0 | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_CTR) { |
771 | 0 | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->ctr_func(ctx->cipher_ctx, |
772 | 0 | ilen, |
773 | 0 | &ctx->unprocessed_len, |
774 | 0 | ctx->iv, |
775 | 0 | ctx->unprocessed_data, |
776 | 0 | input, output))) { |
777 | 0 | return ret; |
778 | 0 | } |
779 | | |
780 | 0 | *olen = ilen; |
781 | |
|
782 | 0 | return 0; |
783 | 0 | } |
784 | 0 | #endif /* MBEDTLS_CIPHER_MODE_CTR */ |
785 | | |
786 | 0 | #if defined(MBEDTLS_CIPHER_MODE_XTS) |
787 | 0 | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_XTS) { |
788 | 0 | if (ctx->unprocessed_len > 0) { |
789 | | /* We can only process an entire data unit at a time. */ |
790 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
791 | 0 | } |
792 | | |
793 | 0 | ret = mbedtls_cipher_get_base(ctx->cipher_info)->xts_func(ctx->cipher_ctx, |
794 | 0 | ctx->operation, |
795 | 0 | ilen, |
796 | 0 | ctx->iv, |
797 | 0 | input, |
798 | 0 | output); |
799 | 0 | if (ret != 0) { |
800 | 0 | return ret; |
801 | 0 | } |
802 | | |
803 | 0 | *olen = ilen; |
804 | |
|
805 | 0 | return 0; |
806 | 0 | } |
807 | 0 | #endif /* MBEDTLS_CIPHER_MODE_XTS */ |
808 | | |
809 | 0 | #if defined(MBEDTLS_CIPHER_MODE_STREAM) |
810 | 0 | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_STREAM) { |
811 | 0 | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->stream_func(ctx->cipher_ctx, |
812 | 0 | ilen, input, |
813 | 0 | output))) { |
814 | 0 | return ret; |
815 | 0 | } |
816 | | |
817 | 0 | *olen = ilen; |
818 | |
|
819 | 0 | return 0; |
820 | 0 | } |
821 | 0 | #endif /* MBEDTLS_CIPHER_MODE_STREAM */ |
822 | | |
823 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
824 | 0 | } Line | Count | Source | 582 | 38.5k | { | 583 | 38.5k | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 584 | 38.5k | size_t block_size; | 585 | | | 586 | 38.5k | if (ctx->cipher_info == NULL) { | 587 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; | 588 | 0 | } | 589 | | | 590 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) | 591 | | if (ctx->psa_enabled == 1) { | 592 | | /* While PSA Crypto has an API for multipart | 593 | | * operations, we currently don't make it | 594 | | * accessible through the cipher layer. */ | 595 | | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; | 596 | | } | 597 | | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ | 598 | | | 599 | 38.5k | *olen = 0; | 600 | 38.5k | block_size = mbedtls_cipher_get_block_size(ctx); | 601 | 38.5k | if (0 == block_size) { | 602 | 0 | return MBEDTLS_ERR_CIPHER_INVALID_CONTEXT; | 603 | 0 | } | 604 | | | 605 | 38.5k | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_ECB) { | 606 | 31.3k | if (ilen != block_size) { | 607 | 0 | return MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED; | 608 | 0 | } | 609 | | | 610 | 31.3k | *olen = ilen; | 611 | | | 612 | 31.3k | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->ecb_func(ctx->cipher_ctx, | 613 | 31.3k | ctx->operation, input, | 614 | 31.3k | output))) { | 615 | 0 | return ret; | 616 | 0 | } | 617 | | | 618 | 31.3k | return 0; | 619 | 31.3k | } | 620 | | | 621 | 7.12k | #if defined(MBEDTLS_GCM_C) | 622 | 7.12k | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_GCM) { | 623 | 0 | return mbedtls_gcm_update((mbedtls_gcm_context *) ctx->cipher_ctx, | 624 | 0 | input, ilen, | 625 | 0 | output, ilen, olen); | 626 | 0 | } | 627 | 7.12k | #endif | 628 | | | 629 | 7.12k | #if defined(MBEDTLS_CCM_C) | 630 | 7.12k | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_CCM_STAR_NO_TAG) { | 631 | 0 | return mbedtls_ccm_update((mbedtls_ccm_context *) ctx->cipher_ctx, | 632 | 0 | input, ilen, | 633 | 0 | output, ilen, olen); | 634 | 0 | } | 635 | 7.12k | #endif | 636 | | | 637 | 7.12k | #if defined(MBEDTLS_CHACHAPOLY_C) | 638 | 7.12k | if (((mbedtls_cipher_type_t) ctx->cipher_info->type) == MBEDTLS_CIPHER_CHACHA20_POLY1305) { | 639 | 0 | *olen = ilen; | 640 | 0 | return mbedtls_chachapoly_update((mbedtls_chachapoly_context *) ctx->cipher_ctx, | 641 | 0 | ilen, input, output); | 642 | 0 | } | 643 | 7.12k | #endif | 644 | | | 645 | 7.12k | if (input == output && | 646 | 7.12k | (ctx->unprocessed_len != 0 || ilen % block_size)) { | 647 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; | 648 | 0 | } | 649 | | | 650 | 7.12k | #if defined(MBEDTLS_CIPHER_MODE_CBC) | 651 | 7.12k | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_CBC) { | 652 | 7.12k | size_t copy_len = 0; | 653 | | | 654 | | /* | 655 | | * If there is not enough data for a full block, cache it. | 656 | | */ | 657 | 7.12k | if ((ctx->operation == MBEDTLS_DECRYPT && NULL != ctx->add_padding && | 658 | 7.12k | ilen <= block_size - ctx->unprocessed_len) || | 659 | 7.12k | (ctx->operation == MBEDTLS_DECRYPT && NULL == ctx->add_padding && | 660 | 7.12k | ilen < block_size - ctx->unprocessed_len) || | 661 | 7.12k | (ctx->operation == MBEDTLS_ENCRYPT && | 662 | 7.12k | ilen < block_size - ctx->unprocessed_len)) { | 663 | 0 | memcpy(&(ctx->unprocessed_data[ctx->unprocessed_len]), input, | 664 | 0 | ilen); | 665 | |
| 666 | 0 | ctx->unprocessed_len += ilen; | 667 | 0 | return 0; | 668 | 0 | } | 669 | | | 670 | | /* | 671 | | * Process cached data first | 672 | | */ | 673 | 7.12k | if (0 != ctx->unprocessed_len) { | 674 | 0 | copy_len = block_size - ctx->unprocessed_len; | 675 | |
| 676 | 0 | memcpy(&(ctx->unprocessed_data[ctx->unprocessed_len]), input, | 677 | 0 | copy_len); | 678 | |
| 679 | 0 | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->cbc_func(ctx->cipher_ctx, | 680 | 0 | ctx->operation, | 681 | 0 | block_size, ctx->iv, | 682 | 0 | ctx-> | 683 | 0 | unprocessed_data, | 684 | 0 | output))) { | 685 | 0 | return ret; | 686 | 0 | } | 687 | | | 688 | 0 | *olen += block_size; | 689 | 0 | output += block_size; | 690 | 0 | ctx->unprocessed_len = 0; | 691 | |
| 692 | 0 | input += copy_len; | 693 | 0 | ilen -= copy_len; | 694 | 0 | } | 695 | | | 696 | | /* | 697 | | * Cache final, incomplete block | 698 | | */ | 699 | 7.12k | if (0 != ilen) { | 700 | | /* Encryption: only cache partial blocks | 701 | | * Decryption w/ padding: always keep at least one whole block | 702 | | * Decryption w/o padding: only cache partial blocks | 703 | | */ | 704 | 7.12k | copy_len = ilen % block_size; | 705 | 7.12k | if (copy_len == 0 && | 706 | 7.12k | ctx->operation == MBEDTLS_DECRYPT && | 707 | 7.12k | NULL != ctx->add_padding) { | 708 | 0 | copy_len = block_size; | 709 | 0 | } | 710 | | | 711 | 7.12k | memcpy(ctx->unprocessed_data, &(input[ilen - copy_len]), | 712 | 7.12k | copy_len); | 713 | | | 714 | 7.12k | ctx->unprocessed_len += copy_len; | 715 | 7.12k | ilen -= copy_len; | 716 | 7.12k | } | 717 | | | 718 | | /* | 719 | | * Process remaining full blocks | 720 | | */ | 721 | 7.12k | if (ilen) { | 722 | 7.12k | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->cbc_func(ctx->cipher_ctx, | 723 | 7.12k | ctx->operation, | 724 | 7.12k | ilen, ctx->iv, | 725 | 7.12k | input, | 726 | 7.12k | output))) { | 727 | 0 | return ret; | 728 | 0 | } | 729 | | | 730 | 7.12k | *olen += ilen; | 731 | 7.12k | } | 732 | | | 733 | 7.12k | return 0; | 734 | 7.12k | } | 735 | 0 | #endif /* MBEDTLS_CIPHER_MODE_CBC */ | 736 | | | 737 | 0 | #if defined(MBEDTLS_CIPHER_MODE_CFB) | 738 | 0 | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_CFB) { | 739 | 0 | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->cfb_func(ctx->cipher_ctx, | 740 | 0 | ctx->operation, ilen, | 741 | 0 | &ctx->unprocessed_len, | 742 | 0 | ctx->iv, | 743 | 0 | input, output))) { | 744 | 0 | return ret; | 745 | 0 | } | 746 | | | 747 | 0 | *olen = ilen; | 748 | |
| 749 | 0 | return 0; | 750 | 0 | } | 751 | 0 | #endif /* MBEDTLS_CIPHER_MODE_CFB */ | 752 | | | 753 | 0 | #if defined(MBEDTLS_CIPHER_MODE_OFB) | 754 | 0 | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_OFB) { | 755 | 0 | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->ofb_func(ctx->cipher_ctx, | 756 | 0 | ilen, | 757 | 0 | &ctx->unprocessed_len, | 758 | 0 | ctx->iv, | 759 | 0 | input, output))) { | 760 | 0 | return ret; | 761 | 0 | } | 762 | | | 763 | 0 | *olen = ilen; | 764 | |
| 765 | 0 | return 0; | 766 | 0 | } | 767 | 0 | #endif /* MBEDTLS_CIPHER_MODE_OFB */ | 768 | | | 769 | 0 | #if defined(MBEDTLS_CIPHER_MODE_CTR) | 770 | 0 | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_CTR) { | 771 | 0 | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->ctr_func(ctx->cipher_ctx, | 772 | 0 | ilen, | 773 | 0 | &ctx->unprocessed_len, | 774 | 0 | ctx->iv, | 775 | 0 | ctx->unprocessed_data, | 776 | 0 | input, output))) { | 777 | 0 | return ret; | 778 | 0 | } | 779 | | | 780 | 0 | *olen = ilen; | 781 | |
| 782 | 0 | return 0; | 783 | 0 | } | 784 | 0 | #endif /* MBEDTLS_CIPHER_MODE_CTR */ | 785 | | | 786 | 0 | #if defined(MBEDTLS_CIPHER_MODE_XTS) | 787 | 0 | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_XTS) { | 788 | 0 | if (ctx->unprocessed_len > 0) { | 789 | | /* We can only process an entire data unit at a time. */ | 790 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; | 791 | 0 | } | 792 | | | 793 | 0 | ret = mbedtls_cipher_get_base(ctx->cipher_info)->xts_func(ctx->cipher_ctx, | 794 | 0 | ctx->operation, | 795 | 0 | ilen, | 796 | 0 | ctx->iv, | 797 | 0 | input, | 798 | 0 | output); | 799 | 0 | if (ret != 0) { | 800 | 0 | return ret; | 801 | 0 | } | 802 | | | 803 | 0 | *olen = ilen; | 804 | |
| 805 | 0 | return 0; | 806 | 0 | } | 807 | 0 | #endif /* MBEDTLS_CIPHER_MODE_XTS */ | 808 | | | 809 | 0 | #if defined(MBEDTLS_CIPHER_MODE_STREAM) | 810 | 0 | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) == MBEDTLS_MODE_STREAM) { | 811 | 0 | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->stream_func(ctx->cipher_ctx, | 812 | 0 | ilen, input, | 813 | 0 | output))) { | 814 | 0 | return ret; | 815 | 0 | } | 816 | | | 817 | 0 | *olen = ilen; | 818 | |
| 819 | 0 | return 0; | 820 | 0 | } | 821 | 0 | #endif /* MBEDTLS_CIPHER_MODE_STREAM */ | 822 | | | 823 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; | 824 | 0 | } |
Unexecuted instantiation: mbedtls_cipher_update |
825 | | |
826 | | #if defined(MBEDTLS_CIPHER_MODE_WITH_PADDING) |
827 | | #if defined(MBEDTLS_CIPHER_PADDING_PKCS7) |
828 | | /* |
829 | | * PKCS7 (and PKCS5) padding: fill with ll bytes, with ll = padding_len |
830 | | */ |
831 | | static void add_pkcs_padding(unsigned char *output, size_t output_len, |
832 | | size_t data_len) |
833 | 0 | { |
834 | 0 | size_t padding_len = output_len - data_len; |
835 | 0 | unsigned char i; |
836 | |
|
837 | 0 | for (i = 0; i < padding_len; i++) { |
838 | 0 | output[data_len + i] = (unsigned char) padding_len; |
839 | 0 | } |
840 | 0 | } |
841 | | |
842 | | /* |
843 | | * Get the length of the PKCS7 padding. |
844 | | * |
845 | | * Note: input_len must be the block size of the cipher. |
846 | | */ |
847 | | MBEDTLS_STATIC_TESTABLE int mbedtls_get_pkcs_padding(unsigned char *input, |
848 | | size_t input_len, |
849 | | size_t *data_len) |
850 | 0 | { |
851 | 0 | size_t i, pad_idx; |
852 | 0 | unsigned char padding_len; |
853 | |
|
854 | 0 | if (NULL == input || NULL == data_len) { |
855 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
856 | 0 | } |
857 | | |
858 | 0 | padding_len = input[input_len - 1]; |
859 | |
|
860 | 0 | mbedtls_ct_condition_t bad = mbedtls_ct_uint_gt(padding_len, input_len); |
861 | 0 | bad = mbedtls_ct_bool_or(bad, mbedtls_ct_uint_eq(padding_len, 0)); |
862 | | |
863 | | /* The number of bytes checked must be independent of padding_len, |
864 | | * so pick input_len, which is usually 8 or 16 (one block) */ |
865 | 0 | pad_idx = input_len - padding_len; |
866 | 0 | for (i = 0; i < input_len; i++) { |
867 | 0 | mbedtls_ct_condition_t in_padding = mbedtls_ct_uint_ge(i, pad_idx); |
868 | 0 | mbedtls_ct_condition_t different = mbedtls_ct_uint_ne(input[i], padding_len); |
869 | 0 | bad = mbedtls_ct_bool_or(bad, mbedtls_ct_bool_and(in_padding, different)); |
870 | 0 | } |
871 | | |
872 | | /* If the padding is invalid, set the output length to 0 */ |
873 | 0 | *data_len = mbedtls_ct_if(bad, 0, input_len - padding_len); |
874 | |
|
875 | 0 | return mbedtls_ct_error_if_else_0(bad, MBEDTLS_ERR_CIPHER_INVALID_PADDING); |
876 | 0 | } |
877 | | #endif /* MBEDTLS_CIPHER_PADDING_PKCS7 */ |
878 | | |
879 | | #if defined(MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS) |
880 | | /* |
881 | | * One and zeros padding: fill with 80 00 ... 00 |
882 | | */ |
883 | | static void add_one_and_zeros_padding(unsigned char *output, |
884 | | size_t output_len, size_t data_len) |
885 | 0 | { |
886 | 0 | size_t padding_len = output_len - data_len; |
887 | 0 | unsigned char i = 0; |
888 | |
|
889 | 0 | output[data_len] = 0x80; |
890 | 0 | for (i = 1; i < padding_len; i++) { |
891 | 0 | output[data_len + i] = 0x00; |
892 | 0 | } |
893 | 0 | } |
894 | | |
895 | | static int get_one_and_zeros_padding(unsigned char *input, size_t input_len, |
896 | | size_t *data_len) |
897 | 0 | { |
898 | 0 | if (NULL == input || NULL == data_len) { |
899 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
900 | 0 | } |
901 | | |
902 | 0 | mbedtls_ct_condition_t in_padding = MBEDTLS_CT_TRUE; |
903 | 0 | mbedtls_ct_condition_t bad = MBEDTLS_CT_TRUE; |
904 | |
|
905 | 0 | *data_len = 0; |
906 | |
|
907 | 0 | for (ptrdiff_t i = (ptrdiff_t) (input_len) - 1; i >= 0; i--) { |
908 | 0 | mbedtls_ct_condition_t is_nonzero = mbedtls_ct_bool(input[i]); |
909 | |
|
910 | 0 | mbedtls_ct_condition_t hit_first_nonzero = mbedtls_ct_bool_and(is_nonzero, in_padding); |
911 | |
|
912 | 0 | *data_len = mbedtls_ct_size_if(hit_first_nonzero, i, *data_len); |
913 | |
|
914 | 0 | bad = mbedtls_ct_bool_if(hit_first_nonzero, mbedtls_ct_uint_ne(input[i], 0x80), bad); |
915 | |
|
916 | 0 | in_padding = mbedtls_ct_bool_and(in_padding, mbedtls_ct_bool_not(is_nonzero)); |
917 | 0 | } |
918 | |
|
919 | 0 | return mbedtls_ct_error_if_else_0(bad, MBEDTLS_ERR_CIPHER_INVALID_PADDING); |
920 | 0 | } |
921 | | #endif /* MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS */ |
922 | | |
923 | | #if defined(MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN) |
924 | | /* |
925 | | * Zeros and len padding: fill with 00 ... 00 ll, where ll is padding length |
926 | | */ |
927 | | static void add_zeros_and_len_padding(unsigned char *output, |
928 | | size_t output_len, size_t data_len) |
929 | 0 | { |
930 | 0 | size_t padding_len = output_len - data_len; |
931 | 0 | unsigned char i = 0; |
932 | |
|
933 | 0 | for (i = 1; i < padding_len; i++) { |
934 | 0 | output[data_len + i - 1] = 0x00; |
935 | 0 | } |
936 | 0 | output[output_len - 1] = (unsigned char) padding_len; |
937 | 0 | } |
938 | | |
939 | | static int get_zeros_and_len_padding(unsigned char *input, size_t input_len, |
940 | | size_t *data_len) |
941 | 0 | { |
942 | 0 | size_t i, pad_idx; |
943 | 0 | unsigned char padding_len; |
944 | 0 | mbedtls_ct_condition_t bad; |
945 | |
|
946 | 0 | if (NULL == input || NULL == data_len) { |
947 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
948 | 0 | } |
949 | | |
950 | 0 | padding_len = input[input_len - 1]; |
951 | 0 | *data_len = input_len - padding_len; |
952 | | |
953 | | /* Avoid logical || since it results in a branch */ |
954 | 0 | bad = mbedtls_ct_uint_gt(padding_len, input_len); |
955 | 0 | bad = mbedtls_ct_bool_or(bad, mbedtls_ct_uint_eq(padding_len, 0)); |
956 | | |
957 | | /* The number of bytes checked must be independent of padding_len */ |
958 | 0 | pad_idx = input_len - padding_len; |
959 | 0 | for (i = 0; i < input_len - 1; i++) { |
960 | 0 | mbedtls_ct_condition_t is_padding = mbedtls_ct_uint_ge(i, pad_idx); |
961 | 0 | mbedtls_ct_condition_t nonzero_pad_byte; |
962 | 0 | nonzero_pad_byte = mbedtls_ct_bool_if_else_0(is_padding, mbedtls_ct_bool(input[i])); |
963 | 0 | bad = mbedtls_ct_bool_or(bad, nonzero_pad_byte); |
964 | 0 | } |
965 | |
|
966 | 0 | return mbedtls_ct_error_if_else_0(bad, MBEDTLS_ERR_CIPHER_INVALID_PADDING); |
967 | 0 | } |
968 | | #endif /* MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN */ |
969 | | |
970 | | #if defined(MBEDTLS_CIPHER_PADDING_ZEROS) |
971 | | /* |
972 | | * Zero padding: fill with 00 ... 00 |
973 | | */ |
974 | | static void add_zeros_padding(unsigned char *output, |
975 | | size_t output_len, size_t data_len) |
976 | 0 | { |
977 | 0 | memset(output + data_len, 0, output_len - data_len); |
978 | 0 | } |
979 | | |
980 | | static int get_zeros_padding(unsigned char *input, size_t input_len, |
981 | | size_t *data_len) |
982 | 0 | { |
983 | 0 | size_t i; |
984 | 0 | mbedtls_ct_condition_t done = MBEDTLS_CT_FALSE, prev_done; |
985 | |
|
986 | 0 | if (NULL == input || NULL == data_len) { |
987 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
988 | 0 | } |
989 | | |
990 | 0 | *data_len = 0; |
991 | 0 | for (i = input_len; i > 0; i--) { |
992 | 0 | prev_done = done; |
993 | 0 | done = mbedtls_ct_bool_or(done, mbedtls_ct_uint_ne(input[i-1], 0)); |
994 | 0 | *data_len = mbedtls_ct_size_if(mbedtls_ct_bool_ne(done, prev_done), i, *data_len); |
995 | 0 | } |
996 | |
|
997 | 0 | return 0; |
998 | 0 | } |
999 | | #endif /* MBEDTLS_CIPHER_PADDING_ZEROS */ |
1000 | | |
1001 | | /* |
1002 | | * No padding: don't pad :) |
1003 | | * |
1004 | | * There is no add_padding function (check for NULL in mbedtls_cipher_finish) |
1005 | | * but a trivial get_padding function |
1006 | | */ |
1007 | | static int get_no_padding(unsigned char *input, size_t input_len, |
1008 | | size_t *data_len) |
1009 | 0 | { |
1010 | 0 | if (NULL == input || NULL == data_len) { |
1011 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1012 | 0 | } |
1013 | | |
1014 | 0 | *data_len = input_len; |
1015 | |
|
1016 | 0 | return 0; |
1017 | 0 | } |
1018 | | #endif /* MBEDTLS_CIPHER_MODE_WITH_PADDING */ |
1019 | | |
1020 | | int mbedtls_cipher_finish(mbedtls_cipher_context_t *ctx, |
1021 | | unsigned char *output, size_t *olen) |
1022 | 7.12k | { |
1023 | 7.12k | if (ctx->cipher_info == NULL) { |
1024 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1025 | 0 | } |
1026 | | |
1027 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
1028 | 0 | if (ctx->psa_enabled == 1) { |
1029 | | /* While PSA Crypto has an API for multipart |
1030 | | * operations, we currently don't make it |
1031 | | * accessible through the cipher layer. */ |
1032 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1033 | 0 | } |
1034 | 0 | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
1035 | | |
1036 | 7.12k | *olen = 0; |
1037 | | |
1038 | 7.12k | #if defined(MBEDTLS_CIPHER_MODE_WITH_PADDING) |
1039 | | /* CBC mode requires padding so we make sure a call to |
1040 | | * mbedtls_cipher_set_padding_mode has been done successfully. */ |
1041 | 7.12k | if (MBEDTLS_MODE_CBC == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
1042 | 7.12k | if (ctx->get_padding == NULL) { |
1043 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1044 | 0 | } |
1045 | 7.12k | } |
1046 | 7.12k | #endif |
1047 | | |
1048 | 7.12k | if (MBEDTLS_MODE_CFB == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || |
1049 | 7.12k | MBEDTLS_MODE_OFB == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || |
1050 | 7.12k | MBEDTLS_MODE_CTR == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || |
1051 | 7.12k | MBEDTLS_MODE_GCM == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || |
1052 | 7.12k | MBEDTLS_MODE_CCM_STAR_NO_TAG == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || |
1053 | 7.12k | MBEDTLS_MODE_XTS == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || |
1054 | 7.12k | MBEDTLS_MODE_STREAM == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
1055 | 0 | return 0; |
1056 | 0 | } |
1057 | | |
1058 | 7.12k | if ((MBEDTLS_CIPHER_CHACHA20 == ((mbedtls_cipher_type_t) ctx->cipher_info->type)) || |
1059 | 7.12k | (MBEDTLS_CIPHER_CHACHA20_POLY1305 == ((mbedtls_cipher_type_t) ctx->cipher_info->type))) { |
1060 | 0 | return 0; |
1061 | 0 | } |
1062 | | |
1063 | 7.12k | if (MBEDTLS_MODE_ECB == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
1064 | 0 | if (ctx->unprocessed_len != 0) { |
1065 | 0 | return MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED; |
1066 | 0 | } |
1067 | | |
1068 | 0 | return 0; |
1069 | 0 | } |
1070 | | |
1071 | 7.12k | #if defined(MBEDTLS_CIPHER_MODE_CBC) |
1072 | 7.12k | if (MBEDTLS_MODE_CBC == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
1073 | 7.12k | int ret = 0; |
1074 | | |
1075 | 7.12k | if (MBEDTLS_ENCRYPT == ctx->operation) { |
1076 | | /* check for 'no padding' mode */ |
1077 | 7.06k | if (NULL == ctx->add_padding) { |
1078 | 7.06k | if (0 != ctx->unprocessed_len) { |
1079 | 0 | return MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED; |
1080 | 0 | } |
1081 | | |
1082 | 7.06k | return 0; |
1083 | 7.06k | } |
1084 | | |
1085 | 0 | ctx->add_padding(ctx->unprocessed_data, mbedtls_cipher_get_iv_size(ctx), |
1086 | 0 | ctx->unprocessed_len); |
1087 | 60 | } else if (mbedtls_cipher_get_block_size(ctx) != ctx->unprocessed_len) { |
1088 | | /* |
1089 | | * For decrypt operations, expect a full block, |
1090 | | * or an empty block if no padding |
1091 | | */ |
1092 | 60 | if (NULL == ctx->add_padding && 0 == ctx->unprocessed_len) { |
1093 | 60 | return 0; |
1094 | 60 | } |
1095 | | |
1096 | 0 | return MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED; |
1097 | 60 | } |
1098 | | |
1099 | | /* cipher block */ |
1100 | 0 | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->cbc_func(ctx->cipher_ctx, |
1101 | 0 | ctx->operation, |
1102 | 0 | mbedtls_cipher_get_block_size( |
1103 | 0 | ctx), |
1104 | 0 | ctx->iv, |
1105 | 0 | ctx->unprocessed_data, |
1106 | 0 | output))) { |
1107 | 0 | return ret; |
1108 | 0 | } |
1109 | | |
1110 | | /* Set output size for decryption */ |
1111 | 0 | if (MBEDTLS_DECRYPT == ctx->operation) { |
1112 | 0 | return ctx->get_padding(output, mbedtls_cipher_get_block_size(ctx), |
1113 | 0 | olen); |
1114 | 0 | } |
1115 | | |
1116 | | /* Set output size for encryption */ |
1117 | 0 | *olen = mbedtls_cipher_get_block_size(ctx); |
1118 | 0 | return 0; |
1119 | 0 | } |
1120 | | #else |
1121 | | ((void) output); |
1122 | | #endif /* MBEDTLS_CIPHER_MODE_CBC */ |
1123 | | |
1124 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1125 | 7.12k | } Line | Count | Source | 1022 | 7.12k | { | 1023 | 7.12k | if (ctx->cipher_info == NULL) { | 1024 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; | 1025 | 0 | } | 1026 | | | 1027 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) | 1028 | | if (ctx->psa_enabled == 1) { | 1029 | | /* While PSA Crypto has an API for multipart | 1030 | | * operations, we currently don't make it | 1031 | | * accessible through the cipher layer. */ | 1032 | | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; | 1033 | | } | 1034 | | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ | 1035 | | | 1036 | 7.12k | *olen = 0; | 1037 | | | 1038 | 7.12k | #if defined(MBEDTLS_CIPHER_MODE_WITH_PADDING) | 1039 | | /* CBC mode requires padding so we make sure a call to | 1040 | | * mbedtls_cipher_set_padding_mode has been done successfully. */ | 1041 | 7.12k | if (MBEDTLS_MODE_CBC == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { | 1042 | 7.12k | if (ctx->get_padding == NULL) { | 1043 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; | 1044 | 0 | } | 1045 | 7.12k | } | 1046 | 7.12k | #endif | 1047 | | | 1048 | 7.12k | if (MBEDTLS_MODE_CFB == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || | 1049 | 7.12k | MBEDTLS_MODE_OFB == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || | 1050 | 7.12k | MBEDTLS_MODE_CTR == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || | 1051 | 7.12k | MBEDTLS_MODE_GCM == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || | 1052 | 7.12k | MBEDTLS_MODE_CCM_STAR_NO_TAG == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || | 1053 | 7.12k | MBEDTLS_MODE_XTS == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || | 1054 | 7.12k | MBEDTLS_MODE_STREAM == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { | 1055 | 0 | return 0; | 1056 | 0 | } | 1057 | | | 1058 | 7.12k | if ((MBEDTLS_CIPHER_CHACHA20 == ((mbedtls_cipher_type_t) ctx->cipher_info->type)) || | 1059 | 7.12k | (MBEDTLS_CIPHER_CHACHA20_POLY1305 == ((mbedtls_cipher_type_t) ctx->cipher_info->type))) { | 1060 | 0 | return 0; | 1061 | 0 | } | 1062 | | | 1063 | 7.12k | if (MBEDTLS_MODE_ECB == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { | 1064 | 0 | if (ctx->unprocessed_len != 0) { | 1065 | 0 | return MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED; | 1066 | 0 | } | 1067 | | | 1068 | 0 | return 0; | 1069 | 0 | } | 1070 | | | 1071 | 7.12k | #if defined(MBEDTLS_CIPHER_MODE_CBC) | 1072 | 7.12k | if (MBEDTLS_MODE_CBC == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { | 1073 | 7.12k | int ret = 0; | 1074 | | | 1075 | 7.12k | if (MBEDTLS_ENCRYPT == ctx->operation) { | 1076 | | /* check for 'no padding' mode */ | 1077 | 7.06k | if (NULL == ctx->add_padding) { | 1078 | 7.06k | if (0 != ctx->unprocessed_len) { | 1079 | 0 | return MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED; | 1080 | 0 | } | 1081 | | | 1082 | 7.06k | return 0; | 1083 | 7.06k | } | 1084 | | | 1085 | 0 | ctx->add_padding(ctx->unprocessed_data, mbedtls_cipher_get_iv_size(ctx), | 1086 | 0 | ctx->unprocessed_len); | 1087 | 60 | } else if (mbedtls_cipher_get_block_size(ctx) != ctx->unprocessed_len) { | 1088 | | /* | 1089 | | * For decrypt operations, expect a full block, | 1090 | | * or an empty block if no padding | 1091 | | */ | 1092 | 60 | if (NULL == ctx->add_padding && 0 == ctx->unprocessed_len) { | 1093 | 60 | return 0; | 1094 | 60 | } | 1095 | | | 1096 | 0 | return MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED; | 1097 | 60 | } | 1098 | | | 1099 | | /* cipher block */ | 1100 | 0 | if (0 != (ret = mbedtls_cipher_get_base(ctx->cipher_info)->cbc_func(ctx->cipher_ctx, | 1101 | 0 | ctx->operation, | 1102 | 0 | mbedtls_cipher_get_block_size( | 1103 | 0 | ctx), | 1104 | 0 | ctx->iv, | 1105 | 0 | ctx->unprocessed_data, | 1106 | 0 | output))) { | 1107 | 0 | return ret; | 1108 | 0 | } | 1109 | | | 1110 | | /* Set output size for decryption */ | 1111 | 0 | if (MBEDTLS_DECRYPT == ctx->operation) { | 1112 | 0 | return ctx->get_padding(output, mbedtls_cipher_get_block_size(ctx), | 1113 | 0 | olen); | 1114 | 0 | } | 1115 | | | 1116 | | /* Set output size for encryption */ | 1117 | 0 | *olen = mbedtls_cipher_get_block_size(ctx); | 1118 | 0 | return 0; | 1119 | 0 | } | 1120 | | #else | 1121 | | ((void) output); | 1122 | | #endif /* MBEDTLS_CIPHER_MODE_CBC */ | 1123 | | | 1124 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; | 1125 | 7.12k | } |
Unexecuted instantiation: mbedtls_cipher_finish |
1126 | | |
1127 | | #if defined(MBEDTLS_CIPHER_MODE_WITH_PADDING) |
1128 | | int mbedtls_cipher_set_padding_mode(mbedtls_cipher_context_t *ctx, |
1129 | | mbedtls_cipher_padding_t mode) |
1130 | 810 | { |
1131 | 810 | if (NULL == ctx->cipher_info || |
1132 | 810 | MBEDTLS_MODE_CBC != ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
1133 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1134 | 0 | } |
1135 | | |
1136 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
1137 | | if (ctx->psa_enabled == 1) { |
1138 | | /* While PSA Crypto knows about CBC padding |
1139 | | * schemes, we currently don't make them |
1140 | | * accessible through the cipher layer. */ |
1141 | | if (mode != MBEDTLS_PADDING_NONE) { |
1142 | | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1143 | | } |
1144 | | |
1145 | | return 0; |
1146 | | } |
1147 | | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
1148 | | |
1149 | 810 | switch (mode) { |
1150 | 0 | #if defined(MBEDTLS_CIPHER_PADDING_PKCS7) |
1151 | 0 | case MBEDTLS_PADDING_PKCS7: |
1152 | 0 | ctx->add_padding = add_pkcs_padding; |
1153 | 0 | ctx->get_padding = mbedtls_get_pkcs_padding; |
1154 | 0 | break; |
1155 | 0 | #endif |
1156 | 0 | #if defined(MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS) |
1157 | 0 | case MBEDTLS_PADDING_ONE_AND_ZEROS: |
1158 | 0 | ctx->add_padding = add_one_and_zeros_padding; |
1159 | 0 | ctx->get_padding = get_one_and_zeros_padding; |
1160 | 0 | break; |
1161 | 0 | #endif |
1162 | 0 | #if defined(MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN) |
1163 | 0 | case MBEDTLS_PADDING_ZEROS_AND_LEN: |
1164 | 0 | ctx->add_padding = add_zeros_and_len_padding; |
1165 | 0 | ctx->get_padding = get_zeros_and_len_padding; |
1166 | 0 | break; |
1167 | 0 | #endif |
1168 | 0 | #if defined(MBEDTLS_CIPHER_PADDING_ZEROS) |
1169 | 0 | case MBEDTLS_PADDING_ZEROS: |
1170 | 0 | ctx->add_padding = add_zeros_padding; |
1171 | 0 | ctx->get_padding = get_zeros_padding; |
1172 | 0 | break; |
1173 | 0 | #endif |
1174 | 810 | case MBEDTLS_PADDING_NONE: |
1175 | 810 | ctx->add_padding = NULL; |
1176 | 810 | ctx->get_padding = get_no_padding; |
1177 | 810 | break; |
1178 | | |
1179 | 0 | default: |
1180 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1181 | 810 | } |
1182 | | |
1183 | 810 | return 0; |
1184 | 810 | } |
1185 | | #endif /* MBEDTLS_CIPHER_MODE_WITH_PADDING */ |
1186 | | |
1187 | | #if defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CHACHAPOLY_C) |
1188 | | int mbedtls_cipher_write_tag(mbedtls_cipher_context_t *ctx, |
1189 | | unsigned char *tag, size_t tag_len) |
1190 | 0 | { |
1191 | 0 | if (ctx->cipher_info == NULL) { |
1192 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1193 | 0 | } |
1194 | | |
1195 | 0 | if (MBEDTLS_ENCRYPT != ctx->operation) { |
1196 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1197 | 0 | } |
1198 | | |
1199 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
1200 | 0 | if (ctx->psa_enabled == 1) { |
1201 | | /* While PSA Crypto has an API for multipart |
1202 | | * operations, we currently don't make it |
1203 | | * accessible through the cipher layer. */ |
1204 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1205 | 0 | } |
1206 | 0 | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
1207 | | |
1208 | 0 | #if defined(MBEDTLS_GCM_C) |
1209 | 0 | if (MBEDTLS_MODE_GCM == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
1210 | 0 | size_t output_length; |
1211 | | /* The code here doesn't yet support alternative implementations |
1212 | | * that can delay up to a block of output. */ |
1213 | 0 | return mbedtls_gcm_finish((mbedtls_gcm_context *) ctx->cipher_ctx, |
1214 | 0 | NULL, 0, &output_length, |
1215 | 0 | tag, tag_len); |
1216 | 0 | } |
1217 | 0 | #endif |
1218 | | |
1219 | 0 | #if defined(MBEDTLS_CHACHAPOLY_C) |
1220 | 0 | if (MBEDTLS_CIPHER_CHACHA20_POLY1305 == ((mbedtls_cipher_type_t) ctx->cipher_info->type)) { |
1221 | | /* Don't allow truncated MAC for Poly1305 */ |
1222 | 0 | if (tag_len != 16U) { |
1223 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1224 | 0 | } |
1225 | | |
1226 | 0 | return mbedtls_chachapoly_finish( |
1227 | 0 | (mbedtls_chachapoly_context *) ctx->cipher_ctx, tag); |
1228 | 0 | } |
1229 | 0 | #endif |
1230 | | |
1231 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1232 | 0 | } Unexecuted instantiation: mbedtls_cipher_write_tag Unexecuted instantiation: mbedtls_cipher_write_tag |
1233 | | |
1234 | | int mbedtls_cipher_check_tag(mbedtls_cipher_context_t *ctx, |
1235 | | const unsigned char *tag, size_t tag_len) |
1236 | 0 | { |
1237 | 0 | unsigned char check_tag[16]; |
1238 | 0 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
1239 | |
|
1240 | 0 | if (ctx->cipher_info == NULL) { |
1241 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1242 | 0 | } |
1243 | | |
1244 | 0 | if (MBEDTLS_DECRYPT != ctx->operation) { |
1245 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1246 | 0 | } |
1247 | | |
1248 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
1249 | 0 | if (ctx->psa_enabled == 1) { |
1250 | | /* While PSA Crypto has an API for multipart |
1251 | | * operations, we currently don't make it |
1252 | | * accessible through the cipher layer. */ |
1253 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1254 | 0 | } |
1255 | 0 | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
1256 | | |
1257 | | /* Status to return on a non-authenticated algorithm. */ |
1258 | 0 | ret = MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1259 | |
|
1260 | 0 | #if defined(MBEDTLS_GCM_C) |
1261 | 0 | if (MBEDTLS_MODE_GCM == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
1262 | 0 | size_t output_length; |
1263 | | /* The code here doesn't yet support alternative implementations |
1264 | | * that can delay up to a block of output. */ |
1265 | |
|
1266 | 0 | if (tag_len > sizeof(check_tag)) { |
1267 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1268 | 0 | } |
1269 | | |
1270 | 0 | if (0 != (ret = mbedtls_gcm_finish( |
1271 | 0 | (mbedtls_gcm_context *) ctx->cipher_ctx, |
1272 | 0 | NULL, 0, &output_length, |
1273 | 0 | check_tag, tag_len))) { |
1274 | 0 | return ret; |
1275 | 0 | } |
1276 | | |
1277 | | /* Check the tag in "constant-time" */ |
1278 | 0 | if (mbedtls_ct_memcmp(tag, check_tag, tag_len) != 0) { |
1279 | 0 | ret = MBEDTLS_ERR_CIPHER_AUTH_FAILED; |
1280 | 0 | goto exit; |
1281 | 0 | } |
1282 | 0 | } |
1283 | 0 | #endif /* MBEDTLS_GCM_C */ |
1284 | | |
1285 | 0 | #if defined(MBEDTLS_CHACHAPOLY_C) |
1286 | 0 | if (MBEDTLS_CIPHER_CHACHA20_POLY1305 == ((mbedtls_cipher_type_t) ctx->cipher_info->type)) { |
1287 | | /* Don't allow truncated MAC for Poly1305 */ |
1288 | 0 | if (tag_len != sizeof(check_tag)) { |
1289 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1290 | 0 | } |
1291 | | |
1292 | 0 | ret = mbedtls_chachapoly_finish( |
1293 | 0 | (mbedtls_chachapoly_context *) ctx->cipher_ctx, check_tag); |
1294 | 0 | if (ret != 0) { |
1295 | 0 | return ret; |
1296 | 0 | } |
1297 | | |
1298 | | /* Check the tag in "constant-time" */ |
1299 | 0 | if (mbedtls_ct_memcmp(tag, check_tag, tag_len) != 0) { |
1300 | 0 | ret = MBEDTLS_ERR_CIPHER_AUTH_FAILED; |
1301 | 0 | goto exit; |
1302 | 0 | } |
1303 | 0 | } |
1304 | 0 | #endif /* MBEDTLS_CHACHAPOLY_C */ |
1305 | | |
1306 | 0 | exit: |
1307 | 0 | mbedtls_platform_zeroize(check_tag, tag_len); |
1308 | 0 | return ret; |
1309 | 0 | } Unexecuted instantiation: mbedtls_cipher_check_tag Unexecuted instantiation: mbedtls_cipher_check_tag |
1310 | | #endif /* MBEDTLS_GCM_C || MBEDTLS_CHACHAPOLY_C */ |
1311 | | |
1312 | | /* |
1313 | | * Packet-oriented wrapper for non-AEAD modes |
1314 | | */ |
1315 | | int mbedtls_cipher_crypt(mbedtls_cipher_context_t *ctx, |
1316 | | const unsigned char *iv, size_t iv_len, |
1317 | | const unsigned char *input, size_t ilen, |
1318 | | unsigned char *output, size_t *olen) |
1319 | 7.12k | { |
1320 | 7.12k | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
1321 | 7.12k | size_t finish_olen; |
1322 | | |
1323 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
1324 | 0 | if (ctx->psa_enabled == 1) { |
1325 | | /* As in the non-PSA case, we don't check that |
1326 | | * a key has been set. If not, the key slot will |
1327 | | * still be in its default state of 0, which is |
1328 | | * guaranteed to be invalid, hence the PSA-call |
1329 | | * below will gracefully fail. */ |
1330 | 0 | mbedtls_cipher_context_psa * const cipher_psa = |
1331 | 0 | (mbedtls_cipher_context_psa *) ctx->cipher_ctx; |
1332 | | |
1333 | | psa_status_t status; |
1334 | 0 | psa_cipher_operation_t cipher_op = PSA_CIPHER_OPERATION_INIT; |
1335 | | size_t part_len; |
1336 | | |
1337 | 0 | if (ctx->operation == MBEDTLS_DECRYPT) { |
1338 | 0 | status = psa_cipher_decrypt_setup(&cipher_op, |
1339 | 0 | cipher_psa->slot, |
1340 | 0 | cipher_psa->alg); |
1341 | 0 | } else if (ctx->operation == MBEDTLS_ENCRYPT) { |
1342 | 0 | status = psa_cipher_encrypt_setup(&cipher_op, |
1343 | 0 | cipher_psa->slot, |
1344 | 0 | cipher_psa->alg); |
1345 | 0 | } else { |
1346 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1347 | 0 | } |
1348 | | |
1349 | | /* In the following, we can immediately return on an error, |
1350 | | * because the PSA Crypto API guarantees that cipher operations |
1351 | | * are terminated by unsuccessful calls to psa_cipher_update(), |
1352 | | * and by any call to psa_cipher_finish(). */ |
1353 | 0 | if (status != PSA_SUCCESS) { |
1354 | 0 | return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED; |
1355 | 0 | } |
1356 | | |
1357 | 0 | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) != MBEDTLS_MODE_ECB) { |
1358 | 0 | status = psa_cipher_set_iv(&cipher_op, iv, iv_len); |
1359 | 0 | if (status != PSA_SUCCESS) { |
1360 | 0 | return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED; |
1361 | 0 | } |
1362 | 0 | } |
1363 | | |
1364 | 0 | status = psa_cipher_update(&cipher_op, |
1365 | 0 | input, ilen, |
1366 | 0 | output, ilen, olen); |
1367 | 0 | if (status != PSA_SUCCESS) { |
1368 | 0 | return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED; |
1369 | 0 | } |
1370 | | |
1371 | 0 | status = psa_cipher_finish(&cipher_op, |
1372 | 0 | output + *olen, ilen - *olen, |
1373 | 0 | &part_len); |
1374 | 0 | if (status != PSA_SUCCESS) { |
1375 | 0 | return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED; |
1376 | 0 | } |
1377 | | |
1378 | 0 | *olen += part_len; |
1379 | 0 | return 0; |
1380 | 0 | } |
1381 | 0 | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
1382 | | |
1383 | 7.12k | if ((ret = mbedtls_cipher_set_iv(ctx, iv, iv_len)) != 0) { |
1384 | 0 | return ret; |
1385 | 0 | } |
1386 | | |
1387 | 7.12k | if ((ret = mbedtls_cipher_reset(ctx)) != 0) { |
1388 | 0 | return ret; |
1389 | 0 | } |
1390 | | |
1391 | 7.12k | if ((ret = mbedtls_cipher_update(ctx, input, ilen, |
1392 | 7.12k | output, olen)) != 0) { |
1393 | 0 | return ret; |
1394 | 0 | } |
1395 | | |
1396 | 7.12k | if ((ret = mbedtls_cipher_finish(ctx, output + *olen, |
1397 | 7.12k | &finish_olen)) != 0) { |
1398 | 0 | return ret; |
1399 | 0 | } |
1400 | | |
1401 | 7.12k | *olen += finish_olen; |
1402 | | |
1403 | 7.12k | return 0; |
1404 | 7.12k | } Line | Count | Source | 1319 | 7.12k | { | 1320 | 7.12k | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 1321 | 7.12k | size_t finish_olen; | 1322 | | | 1323 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) | 1324 | | if (ctx->psa_enabled == 1) { | 1325 | | /* As in the non-PSA case, we don't check that | 1326 | | * a key has been set. If not, the key slot will | 1327 | | * still be in its default state of 0, which is | 1328 | | * guaranteed to be invalid, hence the PSA-call | 1329 | | * below will gracefully fail. */ | 1330 | | mbedtls_cipher_context_psa * const cipher_psa = | 1331 | | (mbedtls_cipher_context_psa *) ctx->cipher_ctx; | 1332 | | | 1333 | | psa_status_t status; | 1334 | | psa_cipher_operation_t cipher_op = PSA_CIPHER_OPERATION_INIT; | 1335 | | size_t part_len; | 1336 | | | 1337 | | if (ctx->operation == MBEDTLS_DECRYPT) { | 1338 | | status = psa_cipher_decrypt_setup(&cipher_op, | 1339 | | cipher_psa->slot, | 1340 | | cipher_psa->alg); | 1341 | | } else if (ctx->operation == MBEDTLS_ENCRYPT) { | 1342 | | status = psa_cipher_encrypt_setup(&cipher_op, | 1343 | | cipher_psa->slot, | 1344 | | cipher_psa->alg); | 1345 | | } else { | 1346 | | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; | 1347 | | } | 1348 | | | 1349 | | /* In the following, we can immediately return on an error, | 1350 | | * because the PSA Crypto API guarantees that cipher operations | 1351 | | * are terminated by unsuccessful calls to psa_cipher_update(), | 1352 | | * and by any call to psa_cipher_finish(). */ | 1353 | | if (status != PSA_SUCCESS) { | 1354 | | return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED; | 1355 | | } | 1356 | | | 1357 | | if (((mbedtls_cipher_mode_t) ctx->cipher_info->mode) != MBEDTLS_MODE_ECB) { | 1358 | | status = psa_cipher_set_iv(&cipher_op, iv, iv_len); | 1359 | | if (status != PSA_SUCCESS) { | 1360 | | return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED; | 1361 | | } | 1362 | | } | 1363 | | | 1364 | | status = psa_cipher_update(&cipher_op, | 1365 | | input, ilen, | 1366 | | output, ilen, olen); | 1367 | | if (status != PSA_SUCCESS) { | 1368 | | return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED; | 1369 | | } | 1370 | | | 1371 | | status = psa_cipher_finish(&cipher_op, | 1372 | | output + *olen, ilen - *olen, | 1373 | | &part_len); | 1374 | | if (status != PSA_SUCCESS) { | 1375 | | return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED; | 1376 | | } | 1377 | | | 1378 | | *olen += part_len; | 1379 | | return 0; | 1380 | | } | 1381 | | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ | 1382 | | | 1383 | 7.12k | if ((ret = mbedtls_cipher_set_iv(ctx, iv, iv_len)) != 0) { | 1384 | 0 | return ret; | 1385 | 0 | } | 1386 | | | 1387 | 7.12k | if ((ret = mbedtls_cipher_reset(ctx)) != 0) { | 1388 | 0 | return ret; | 1389 | 0 | } | 1390 | | | 1391 | 7.12k | if ((ret = mbedtls_cipher_update(ctx, input, ilen, | 1392 | 7.12k | output, olen)) != 0) { | 1393 | 0 | return ret; | 1394 | 0 | } | 1395 | | | 1396 | 7.12k | if ((ret = mbedtls_cipher_finish(ctx, output + *olen, | 1397 | 7.12k | &finish_olen)) != 0) { | 1398 | 0 | return ret; | 1399 | 0 | } | 1400 | | | 1401 | 7.12k | *olen += finish_olen; | 1402 | | | 1403 | 7.12k | return 0; | 1404 | 7.12k | } |
Unexecuted instantiation: mbedtls_cipher_crypt |
1405 | | |
1406 | | #if defined(MBEDTLS_CIPHER_MODE_AEAD) |
1407 | | /* |
1408 | | * Packet-oriented encryption for AEAD modes: internal function used by |
1409 | | * mbedtls_cipher_auth_encrypt_ext(). |
1410 | | */ |
1411 | | static int mbedtls_cipher_aead_encrypt(mbedtls_cipher_context_t *ctx, |
1412 | | const unsigned char *iv, size_t iv_len, |
1413 | | const unsigned char *ad, size_t ad_len, |
1414 | | const unsigned char *input, size_t ilen, |
1415 | | unsigned char *output, size_t *olen, |
1416 | | unsigned char *tag, size_t tag_len) |
1417 | 2.74k | { |
1418 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
1419 | | if (ctx->psa_enabled == 1) { |
1420 | | /* As in the non-PSA case, we don't check that |
1421 | | * a key has been set. If not, the key slot will |
1422 | | * still be in its default state of 0, which is |
1423 | | * guaranteed to be invalid, hence the PSA-call |
1424 | | * below will gracefully fail. */ |
1425 | | mbedtls_cipher_context_psa * const cipher_psa = |
1426 | | (mbedtls_cipher_context_psa *) ctx->cipher_ctx; |
1427 | | |
1428 | | psa_status_t status; |
1429 | | |
1430 | | /* PSA Crypto API always writes the authentication tag |
1431 | | * at the end of the encrypted message. */ |
1432 | | if (output == NULL || tag != output + ilen) { |
1433 | | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1434 | | } |
1435 | | |
1436 | | status = psa_aead_encrypt(cipher_psa->slot, |
1437 | | cipher_psa->alg, |
1438 | | iv, iv_len, |
1439 | | ad, ad_len, |
1440 | | input, ilen, |
1441 | | output, ilen + tag_len, olen); |
1442 | | if (status != PSA_SUCCESS) { |
1443 | | return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED; |
1444 | | } |
1445 | | |
1446 | | *olen -= tag_len; |
1447 | | return 0; |
1448 | | } |
1449 | | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
1450 | | |
1451 | 2.74k | #if defined(MBEDTLS_GCM_C) |
1452 | 2.74k | if (MBEDTLS_MODE_GCM == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
1453 | 2.16k | *olen = ilen; |
1454 | 2.16k | return mbedtls_gcm_crypt_and_tag(ctx->cipher_ctx, MBEDTLS_GCM_ENCRYPT, |
1455 | 2.16k | ilen, iv, iv_len, ad, ad_len, |
1456 | 2.16k | input, output, tag_len, tag); |
1457 | 2.16k | } |
1458 | 577 | #endif /* MBEDTLS_GCM_C */ |
1459 | 577 | #if defined(MBEDTLS_CCM_C) |
1460 | 577 | if (MBEDTLS_MODE_CCM == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
1461 | 577 | *olen = ilen; |
1462 | 577 | return mbedtls_ccm_encrypt_and_tag(ctx->cipher_ctx, ilen, |
1463 | 577 | iv, iv_len, ad, ad_len, input, output, |
1464 | 577 | tag, tag_len); |
1465 | 577 | } |
1466 | 0 | #endif /* MBEDTLS_CCM_C */ |
1467 | 0 | #if defined(MBEDTLS_CHACHAPOLY_C) |
1468 | 0 | if (MBEDTLS_CIPHER_CHACHA20_POLY1305 == ((mbedtls_cipher_type_t) ctx->cipher_info->type)) { |
1469 | | /* ChachaPoly has fixed length nonce and MAC (tag) */ |
1470 | 0 | if ((iv_len != mbedtls_cipher_info_get_iv_size(ctx->cipher_info)) || |
1471 | 0 | (tag_len != 16U)) { |
1472 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1473 | 0 | } |
1474 | | |
1475 | 0 | *olen = ilen; |
1476 | 0 | return mbedtls_chachapoly_encrypt_and_tag(ctx->cipher_ctx, |
1477 | 0 | ilen, iv, ad, ad_len, input, output, tag); |
1478 | 0 | } |
1479 | 0 | #endif /* MBEDTLS_CHACHAPOLY_C */ |
1480 | | |
1481 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1482 | 0 | } |
1483 | | |
1484 | | /* |
1485 | | * Packet-oriented encryption for AEAD modes: internal function used by |
1486 | | * mbedtls_cipher_auth_encrypt_ext(). |
1487 | | */ |
1488 | | static int mbedtls_cipher_aead_decrypt(mbedtls_cipher_context_t *ctx, |
1489 | | const unsigned char *iv, size_t iv_len, |
1490 | | const unsigned char *ad, size_t ad_len, |
1491 | | const unsigned char *input, size_t ilen, |
1492 | | unsigned char *output, size_t *olen, |
1493 | | const unsigned char *tag, size_t tag_len) |
1494 | 718 | { |
1495 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
1496 | | if (ctx->psa_enabled == 1) { |
1497 | | /* As in the non-PSA case, we don't check that |
1498 | | * a key has been set. If not, the key slot will |
1499 | | * still be in its default state of 0, which is |
1500 | | * guaranteed to be invalid, hence the PSA-call |
1501 | | * below will gracefully fail. */ |
1502 | | mbedtls_cipher_context_psa * const cipher_psa = |
1503 | | (mbedtls_cipher_context_psa *) ctx->cipher_ctx; |
1504 | | |
1505 | | psa_status_t status; |
1506 | | |
1507 | | /* PSA Crypto API always writes the authentication tag |
1508 | | * at the end of the encrypted message. */ |
1509 | | if (input == NULL || tag != input + ilen) { |
1510 | | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1511 | | } |
1512 | | |
1513 | | status = psa_aead_decrypt(cipher_psa->slot, |
1514 | | cipher_psa->alg, |
1515 | | iv, iv_len, |
1516 | | ad, ad_len, |
1517 | | input, ilen + tag_len, |
1518 | | output, ilen, olen); |
1519 | | if (status == PSA_ERROR_INVALID_SIGNATURE) { |
1520 | | return MBEDTLS_ERR_CIPHER_AUTH_FAILED; |
1521 | | } else if (status != PSA_SUCCESS) { |
1522 | | return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED; |
1523 | | } |
1524 | | |
1525 | | return 0; |
1526 | | } |
1527 | | #endif /* MBEDTLS_USE_PSA_CRYPTO && !MBEDTLS_DEPRECATED_REMOVED */ |
1528 | | |
1529 | 718 | #if defined(MBEDTLS_GCM_C) |
1530 | 718 | if (MBEDTLS_MODE_GCM == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
1531 | 678 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
1532 | | |
1533 | 678 | *olen = ilen; |
1534 | 678 | ret = mbedtls_gcm_auth_decrypt(ctx->cipher_ctx, ilen, |
1535 | 678 | iv, iv_len, ad, ad_len, |
1536 | 678 | tag, tag_len, input, output); |
1537 | | |
1538 | 678 | if (ret == MBEDTLS_ERR_GCM_AUTH_FAILED) { |
1539 | 678 | ret = MBEDTLS_ERR_CIPHER_AUTH_FAILED; |
1540 | 678 | } |
1541 | | |
1542 | 678 | return ret; |
1543 | 678 | } |
1544 | 40 | #endif /* MBEDTLS_GCM_C */ |
1545 | 40 | #if defined(MBEDTLS_CCM_C) |
1546 | 40 | if (MBEDTLS_MODE_CCM == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) { |
1547 | 40 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
1548 | | |
1549 | 40 | *olen = ilen; |
1550 | 40 | ret = mbedtls_ccm_auth_decrypt(ctx->cipher_ctx, ilen, |
1551 | 40 | iv, iv_len, ad, ad_len, |
1552 | 40 | input, output, tag, tag_len); |
1553 | | |
1554 | 40 | if (ret == MBEDTLS_ERR_CCM_AUTH_FAILED) { |
1555 | 40 | ret = MBEDTLS_ERR_CIPHER_AUTH_FAILED; |
1556 | 40 | } |
1557 | | |
1558 | 40 | return ret; |
1559 | 40 | } |
1560 | 0 | #endif /* MBEDTLS_CCM_C */ |
1561 | 0 | #if defined(MBEDTLS_CHACHAPOLY_C) |
1562 | 0 | if (MBEDTLS_CIPHER_CHACHA20_POLY1305 == ((mbedtls_cipher_type_t) ctx->cipher_info->type)) { |
1563 | 0 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
1564 | | |
1565 | | /* ChachaPoly has fixed length nonce and MAC (tag) */ |
1566 | 0 | if ((iv_len != mbedtls_cipher_info_get_iv_size(ctx->cipher_info)) || |
1567 | 0 | (tag_len != 16U)) { |
1568 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1569 | 0 | } |
1570 | | |
1571 | 0 | *olen = ilen; |
1572 | 0 | ret = mbedtls_chachapoly_auth_decrypt(ctx->cipher_ctx, ilen, |
1573 | 0 | iv, ad, ad_len, tag, input, output); |
1574 | |
|
1575 | 0 | if (ret == MBEDTLS_ERR_CHACHAPOLY_AUTH_FAILED) { |
1576 | 0 | ret = MBEDTLS_ERR_CIPHER_AUTH_FAILED; |
1577 | 0 | } |
1578 | |
|
1579 | 0 | return ret; |
1580 | 0 | } |
1581 | 0 | #endif /* MBEDTLS_CHACHAPOLY_C */ |
1582 | | |
1583 | 0 | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1584 | 0 | } |
1585 | | #endif /* MBEDTLS_CIPHER_MODE_AEAD */ |
1586 | | |
1587 | | #if defined(MBEDTLS_CIPHER_MODE_AEAD) || defined(MBEDTLS_NIST_KW_C) |
1588 | | /* |
1589 | | * Packet-oriented encryption for AEAD/NIST_KW: public function. |
1590 | | */ |
1591 | | int mbedtls_cipher_auth_encrypt_ext(mbedtls_cipher_context_t *ctx, |
1592 | | const unsigned char *iv, size_t iv_len, |
1593 | | const unsigned char *ad, size_t ad_len, |
1594 | | const unsigned char *input, size_t ilen, |
1595 | | unsigned char *output, size_t output_len, |
1596 | | size_t *olen, size_t tag_len) |
1597 | 2.74k | { |
1598 | 2.74k | #if defined(MBEDTLS_NIST_KW_C) |
1599 | 2.74k | if ( |
1600 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
1601 | | ctx->psa_enabled == 0 && |
1602 | | #endif |
1603 | 2.74k | (MBEDTLS_MODE_KW == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || |
1604 | 2.74k | MBEDTLS_MODE_KWP == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode))) { |
1605 | 0 | mbedtls_nist_kw_mode_t mode = |
1606 | 0 | (MBEDTLS_MODE_KW == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) ? |
1607 | 0 | MBEDTLS_KW_MODE_KW : MBEDTLS_KW_MODE_KWP; |
1608 | | |
1609 | | /* There is no iv, tag or ad associated with KW and KWP, |
1610 | | * so these length should be 0 as documented. */ |
1611 | 0 | if (iv_len != 0 || tag_len != 0 || ad_len != 0) { |
1612 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1613 | 0 | } |
1614 | | |
1615 | 0 | (void) iv; |
1616 | 0 | (void) ad; |
1617 | |
|
1618 | 0 | return mbedtls_nist_kw_wrap(ctx->cipher_ctx, mode, input, ilen, |
1619 | 0 | output, olen, output_len); |
1620 | 0 | } |
1621 | 2.74k | #endif /* MBEDTLS_NIST_KW_C */ |
1622 | | |
1623 | 2.74k | #if defined(MBEDTLS_CIPHER_MODE_AEAD) |
1624 | | /* AEAD case: check length before passing on to shared function */ |
1625 | 2.74k | if (output_len < ilen + tag_len) { |
1626 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1627 | 0 | } |
1628 | | |
1629 | 2.74k | int ret = mbedtls_cipher_aead_encrypt(ctx, iv, iv_len, ad, ad_len, |
1630 | 2.74k | input, ilen, output, olen, |
1631 | 2.74k | output + ilen, tag_len); |
1632 | 2.74k | *olen += tag_len; |
1633 | 2.74k | return ret; |
1634 | | #else |
1635 | | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1636 | | #endif /* MBEDTLS_CIPHER_MODE_AEAD */ |
1637 | 2.74k | } |
1638 | | |
1639 | | /* |
1640 | | * Packet-oriented decryption for AEAD/NIST_KW: public function. |
1641 | | */ |
1642 | | int mbedtls_cipher_auth_decrypt_ext(mbedtls_cipher_context_t *ctx, |
1643 | | const unsigned char *iv, size_t iv_len, |
1644 | | const unsigned char *ad, size_t ad_len, |
1645 | | const unsigned char *input, size_t ilen, |
1646 | | unsigned char *output, size_t output_len, |
1647 | | size_t *olen, size_t tag_len) |
1648 | 718 | { |
1649 | 718 | #if defined(MBEDTLS_NIST_KW_C) |
1650 | 718 | if ( |
1651 | | #if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_DEPRECATED_REMOVED) |
1652 | | ctx->psa_enabled == 0 && |
1653 | | #endif |
1654 | 718 | (MBEDTLS_MODE_KW == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode) || |
1655 | 718 | MBEDTLS_MODE_KWP == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode))) { |
1656 | 0 | mbedtls_nist_kw_mode_t mode = |
1657 | 0 | (MBEDTLS_MODE_KW == ((mbedtls_cipher_mode_t) ctx->cipher_info->mode)) ? |
1658 | 0 | MBEDTLS_KW_MODE_KW : MBEDTLS_KW_MODE_KWP; |
1659 | | |
1660 | | /* There is no iv, tag or ad associated with KW and KWP, |
1661 | | * so these length should be 0 as documented. */ |
1662 | 0 | if (iv_len != 0 || tag_len != 0 || ad_len != 0) { |
1663 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1664 | 0 | } |
1665 | | |
1666 | 0 | (void) iv; |
1667 | 0 | (void) ad; |
1668 | |
|
1669 | 0 | return mbedtls_nist_kw_unwrap(ctx->cipher_ctx, mode, input, ilen, |
1670 | 0 | output, olen, output_len); |
1671 | 0 | } |
1672 | 718 | #endif /* MBEDTLS_NIST_KW_C */ |
1673 | | |
1674 | 718 | #if defined(MBEDTLS_CIPHER_MODE_AEAD) |
1675 | | /* AEAD case: check length before passing on to shared function */ |
1676 | 718 | if (ilen < tag_len || output_len < ilen - tag_len) { |
1677 | 0 | return MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA; |
1678 | 0 | } |
1679 | | |
1680 | 718 | return mbedtls_cipher_aead_decrypt(ctx, iv, iv_len, ad, ad_len, |
1681 | 718 | input, ilen - tag_len, output, olen, |
1682 | 718 | input + ilen - tag_len, tag_len); |
1683 | | #else |
1684 | | return MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE; |
1685 | | #endif /* MBEDTLS_CIPHER_MODE_AEAD */ |
1686 | 718 | } |
1687 | | #endif /* MBEDTLS_CIPHER_MODE_AEAD || MBEDTLS_NIST_KW_C */ |
1688 | | |
1689 | | #endif /* MBEDTLS_CIPHER_C */ |