]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/evp_lib.c
Don't hold a lock when calling a callback in ossl_namemap_doall_names
[thirdparty/openssl.git] / crypto / evp / evp_lib.c
CommitLineData
62867571 1/*
4333b89f 2 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
58964a49 3 *
4a8b0c55 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
62867571
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
58964a49
RE
8 */
9
41bbba53
P
10/*
11 * EVP _meth_ APIs are deprecated for public use, but still ok for
12 * internal use.
13 */
14#include "internal/deprecated.h"
15
58964a49 16#include <stdio.h>
b39fc560 17#include "internal/cryptlib.h"
ec577822
BM
18#include <openssl/evp.h>
19#include <openssl/objects.h>
718b133a
MC
20#include <openssl/params.h>
21#include <openssl/core_names.h>
ff64702b 22#include <openssl/dh.h>
023b188c 23#include <openssl/ec.h>
25f2138b 24#include "crypto/evp.h"
924663c3 25#include "crypto/asn1.h"
3653d0c2 26#include "internal/provider.h"
706457b7 27#include "evp_local.h"
58964a49 28
f844f9eb 29#if !defined(FIPS_MODULE)
6b691a5c 30int EVP_CIPHER_param_to_asn1(EVP_CIPHER_CTX *c, ASN1_TYPE *type)
924663c3
JZ
31{
32 return evp_cipher_param_to_asn1_ex(c, type, NULL);
33}
34
35int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type)
36{
37 return evp_cipher_asn1_to_param_ex(c, type, NULL);
38}
39
40int EVP_CIPHER_get_asn1_iv(EVP_CIPHER_CTX *ctx, ASN1_TYPE *type)
41{
42 int i = 0;
43 unsigned int l;
44
45 if (type != NULL) {
46 unsigned char iv[EVP_MAX_IV_LENGTH];
47
48 l = EVP_CIPHER_CTX_iv_length(ctx);
49 if (!ossl_assert(l <= sizeof(iv)))
50 return -1;
51 i = ASN1_TYPE_get_octetstring(type, iv, l);
52 if (i != (int)l)
53 return -1;
54
55 if (!EVP_CipherInit_ex(ctx, NULL, NULL, NULL, iv, -1))
56 return -1;
57 }
58 return i;
59}
60
61int EVP_CIPHER_set_asn1_iv(EVP_CIPHER_CTX *c, ASN1_TYPE *type)
62{
63 int i = 0;
64 unsigned int j;
65 unsigned char *oiv = NULL;
66
67 if (type != NULL) {
68 oiv = (unsigned char *)EVP_CIPHER_CTX_original_iv(c);
69 j = EVP_CIPHER_CTX_iv_length(c);
70 OPENSSL_assert(j <= sizeof(c->iv));
71 i = ASN1_TYPE_set_octetstring(type, oiv, j);
72 }
73 return i;
74}
75
76int evp_cipher_param_to_asn1_ex(EVP_CIPHER_CTX *c, ASN1_TYPE *type,
77 evp_cipher_aead_asn1_params *asn1_params)
0f113f3e 78{
c96399e2 79 int ret = -1; /* Assume the worst */
718b133a 80 const EVP_CIPHER *cipher = c->cipher;
0f113f3e 81
c96399e2
RL
82 /*
83 * For legacy implementations, we detect custom AlgorithmIdentifier
84 * parameter handling by checking if the function pointer
85 * cipher->set_asn1_parameters is set. We know that this pointer
86 * is NULL for provided implementations.
87 *
88 * Otherwise, for any implementation, we check the flag
89 * EVP_CIPH_FLAG_CUSTOM_ASN1. If it isn't set, we apply
90 * default AI parameter extraction.
91 *
92 * Otherwise, for provided implementations, we convert |type| to
93 * a DER encoded blob and pass to the implementation in OSSL_PARAM
94 * form.
95 *
96 * If none of the above applies, this operation is unsupported.
97 */
98 if (cipher->set_asn1_parameters != NULL) {
718b133a 99 ret = cipher->set_asn1_parameters(c, type);
c96399e2 100 } else if ((EVP_CIPHER_flags(cipher) & EVP_CIPH_FLAG_CUSTOM_ASN1) == 0) {
718b133a 101 switch (EVP_CIPHER_mode(cipher)) {
2acdef5e 102 case EVP_CIPH_WRAP_MODE:
c96399e2 103 if (EVP_CIPHER_is_a(cipher, SN_id_smime_alg_CMS3DESwrap))
4ec36aff 104 ASN1_TYPE_set(type, V_ASN1_NULL, NULL);
0f113f3e 105 ret = 1;
2acdef5e
DSH
106 break;
107
108 case EVP_CIPH_GCM_MODE:
924663c3
JZ
109 ret = evp_cipher_set_asn1_aead_params(c, type, asn1_params);
110 break;
111
2acdef5e
DSH
112 case EVP_CIPH_CCM_MODE:
113 case EVP_CIPH_XTS_MODE:
114 case EVP_CIPH_OCB_MODE:
49c9c1b3 115 ret = -2;
2acdef5e
DSH
116 break;
117
118 default:
0f113f3e 119 ret = EVP_CIPHER_set_asn1_iv(c, type);
2acdef5e 120 }
c96399e2
RL
121 } else if (cipher->prov != NULL) {
122 OSSL_PARAM params[3], *p = params;
123 unsigned char *der = NULL, *derp;
124
125 /*
126 * We make two passes, the first to get the appropriate buffer size,
127 * and the second to get the actual value.
128 */
129 *p++ = OSSL_PARAM_construct_octet_string(OSSL_CIPHER_PARAM_ALG_ID,
130 NULL, 0);
131 *p = OSSL_PARAM_construct_end();
132
133 if (!EVP_CIPHER_CTX_get_params(c, params))
134 goto err;
135
136 /* ... but, we should get a return size too! */
99ea4f02
P
137 if (OSSL_PARAM_modified(params)
138 && params[0].return_size != 0
c96399e2
RL
139 && (der = OPENSSL_malloc(params[0].return_size)) != NULL) {
140 params[0].data = der;
141 params[0].data_size = params[0].return_size;
99ea4f02 142 OSSL_PARAM_set_all_unmodified(params);
c96399e2
RL
143 derp = der;
144 if (EVP_CIPHER_CTX_get_params(c, params)
99ea4f02 145 && OSSL_PARAM_modified(params)
c96399e2
RL
146 && d2i_ASN1_TYPE(&type, (const unsigned char **)&derp,
147 params[0].return_size) != NULL) {
148 ret = 1;
149 }
150 OPENSSL_free(der);
151 }
152 } else {
153 ret = -2;
154 }
155
156 err:
51ba9ebd 157 if (ret == -2)
9311d0c4 158 ERR_raise(ERR_LIB_EVP, EVP_R_UNSUPPORTED_CIPHER);
51ba9ebd 159 else if (ret <= 0)
9311d0c4 160 ERR_raise(ERR_LIB_EVP, EVP_R_CIPHER_PARAMETER_ERROR);
49c9c1b3
DO
161 if (ret < -1)
162 ret = -1;
26a7d938 163 return ret;
0f113f3e 164}
58964a49 165
924663c3
JZ
166int evp_cipher_asn1_to_param_ex(EVP_CIPHER_CTX *c, ASN1_TYPE *type,
167 evp_cipher_aead_asn1_params *asn1_params)
0f113f3e 168{
c96399e2 169 int ret = -1; /* Assume the worst */
718b133a
MC
170 const EVP_CIPHER *cipher = c->cipher;
171
c96399e2
RL
172 /*
173 * For legacy implementations, we detect custom AlgorithmIdentifier
174 * parameter handling by checking if there the function pointer
175 * cipher->get_asn1_parameters is set. We know that this pointer
176 * is NULL for provided implementations.
177 *
178 * Otherwise, for any implementation, we check the flag
179 * EVP_CIPH_FLAG_CUSTOM_ASN1. If it isn't set, we apply
180 * default AI parameter creation.
181 *
182 * Otherwise, for provided implementations, we get the AI parameter
183 * in DER encoded form from the implementation by requesting the
184 * appropriate OSSL_PARAM and converting the result to a ASN1_TYPE.
185 *
186 * If none of the above applies, this operation is unsupported.
187 */
188 if (cipher->get_asn1_parameters != NULL) {
718b133a 189 ret = cipher->get_asn1_parameters(c, type);
c96399e2 190 } else if ((EVP_CIPHER_flags(cipher) & EVP_CIPH_FLAG_CUSTOM_ASN1) == 0) {
718b133a 191 switch (EVP_CIPHER_mode(cipher)) {
2acdef5e
DSH
192 case EVP_CIPH_WRAP_MODE:
193 ret = 1;
194 break;
195
196 case EVP_CIPH_GCM_MODE:
924663c3
JZ
197 ret = evp_cipher_get_asn1_aead_params(c, type, asn1_params);
198 break;
199
2acdef5e
DSH
200 case EVP_CIPH_CCM_MODE:
201 case EVP_CIPH_XTS_MODE:
202 case EVP_CIPH_OCB_MODE:
49c9c1b3 203 ret = -2;
2acdef5e
DSH
204 break;
205
206 default:
207 ret = EVP_CIPHER_get_asn1_iv(c, type);
2acdef5e 208 }
c96399e2
RL
209 } else if (cipher->prov != NULL) {
210 OSSL_PARAM params[3], *p = params;
211 unsigned char *der = NULL;
212 int derl = -1;
213
214 if ((derl = i2d_ASN1_TYPE(type, &der)) >= 0) {
215 *p++ =
216 OSSL_PARAM_construct_octet_string(OSSL_CIPHER_PARAM_ALG_ID,
217 der, (size_t)derl);
218 *p = OSSL_PARAM_construct_end();
219 if (EVP_CIPHER_CTX_set_params(c, params))
220 ret = 1;
221 OPENSSL_free(der);
222 }
223 } else {
224 ret = -2;
225 }
226
51ba9ebd 227 if (ret == -2)
9311d0c4 228 ERR_raise(ERR_LIB_EVP, EVP_R_UNSUPPORTED_CIPHER);
51ba9ebd 229 else if (ret <= 0)
9311d0c4 230 ERR_raise(ERR_LIB_EVP, EVP_R_CIPHER_PARAMETER_ERROR);
49c9c1b3
DO
231 if (ret < -1)
232 ret = -1;
26a7d938 233 return ret;
0f113f3e 234}
58964a49 235
924663c3
JZ
236int evp_cipher_get_asn1_aead_params(EVP_CIPHER_CTX *c, ASN1_TYPE *type,
237 evp_cipher_aead_asn1_params *asn1_params)
0f113f3e
MC
238{
239 int i = 0;
924663c3
JZ
240 long tl;
241 unsigned char iv[EVP_MAX_IV_LENGTH];
0f113f3e 242
924663c3
JZ
243 if (type == NULL || asn1_params == NULL)
244 return 0;
718b133a 245
924663c3
JZ
246 i = asn1_type_get_octetstring_int(type, &tl, NULL, EVP_MAX_IV_LENGTH);
247 if (i <= 0)
248 return -1;
249 asn1_type_get_octetstring_int(type, &tl, iv, i);
250
251 memcpy(asn1_params->iv, iv, i);
252 asn1_params->iv_len = i;
718b133a 253
26a7d938 254 return i;
0f113f3e 255}
58964a49 256
924663c3
JZ
257int evp_cipher_set_asn1_aead_params(EVP_CIPHER_CTX *c, ASN1_TYPE *type,
258 evp_cipher_aead_asn1_params *asn1_params)
0f113f3e 259{
924663c3
JZ
260 if (type == NULL || asn1_params == NULL)
261 return 0;
0f113f3e 262
924663c3
JZ
263 return asn1_type_set_octetstring_int(type, asn1_params->tag_len,
264 asn1_params->iv, asn1_params->iv_len);
0f113f3e 265}
f844f9eb 266#endif /* !defined(FIPS_MODULE) */
884e8ec6
DSH
267
268/* Convert the various cipher NIDs and dummies to a proper OID NID */
84fa704c 269int EVP_CIPHER_type(const EVP_CIPHER *ctx)
884e8ec6 270{
0f113f3e 271 int nid;
0f113f3e 272 nid = EVP_CIPHER_nid(ctx);
884e8ec6 273
0f113f3e 274 switch (nid) {
884e8ec6 275
0f113f3e
MC
276 case NID_rc2_cbc:
277 case NID_rc2_64_cbc:
278 case NID_rc2_40_cbc:
884e8ec6 279
0f113f3e 280 return NID_rc2_cbc;
884e8ec6 281
0f113f3e
MC
282 case NID_rc4:
283 case NID_rc4_40:
884e8ec6 284
0f113f3e 285 return NID_rc4;
884e8ec6 286
0f113f3e
MC
287 case NID_aes_128_cfb128:
288 case NID_aes_128_cfb8:
289 case NID_aes_128_cfb1:
8d1ebe0b 290
0f113f3e 291 return NID_aes_128_cfb128;
8d1ebe0b 292
0f113f3e
MC
293 case NID_aes_192_cfb128:
294 case NID_aes_192_cfb8:
295 case NID_aes_192_cfb1:
8d1ebe0b 296
0f113f3e 297 return NID_aes_192_cfb128;
8d1ebe0b 298
0f113f3e
MC
299 case NID_aes_256_cfb128:
300 case NID_aes_256_cfb8:
301 case NID_aes_256_cfb1:
8d1ebe0b 302
0f113f3e 303 return NID_aes_256_cfb128;
8d1ebe0b 304
0f113f3e
MC
305 case NID_des_cfb64:
306 case NID_des_cfb8:
307 case NID_des_cfb1:
8d1ebe0b 308
0f113f3e 309 return NID_des_cfb64;
8d1ebe0b 310
0f113f3e
MC
311 case NID_des_ede3_cfb64:
312 case NID_des_ede3_cfb8:
313 case NID_des_ede3_cfb1:
7e765bf2 314
0f113f3e 315 return NID_des_cfb64;
7e765bf2 316
0f113f3e 317 default:
f844f9eb 318#ifdef FIPS_MODULE
319e518a
MC
319 return NID_undef;
320#else
321 {
322 /* Check it has an OID and it is valid */
323 ASN1_OBJECT *otmp = OBJ_nid2obj(nid);
324
325 if (OBJ_get0_data(otmp) == NULL)
326 nid = NID_undef;
327 ASN1_OBJECT_free(otmp);
328 return nid;
329 }
330#endif
0f113f3e 331 }
884e8ec6
DSH
332}
333
3c957bcd 334int evp_cipher_cache_constants(EVP_CIPHER *cipher)
0f113f3e 335{
a054d15c 336 int ok, aead = 0, custom_iv = 0, cts = 0, multiblock = 0;
3c957bcd
SL
337 size_t ivlen = 0;
338 size_t blksz = 0;
339 size_t keylen = 0;
340 unsigned int mode = 0;
a054d15c 341 OSSL_PARAM params[9];
3c957bcd
SL
342
343 params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_BLOCK_SIZE, &blksz);
344 params[1] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_IVLEN, &ivlen);
345 params[2] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_KEYLEN, &keylen);
346 params[3] = OSSL_PARAM_construct_uint(OSSL_CIPHER_PARAM_MODE, &mode);
a054d15c
SL
347 params[4] = OSSL_PARAM_construct_int(OSSL_CIPHER_PARAM_AEAD, &aead);
348 params[5] = OSSL_PARAM_construct_int(OSSL_CIPHER_PARAM_CUSTOM_IV,
349 &custom_iv);
350 params[6] = OSSL_PARAM_construct_int(OSSL_CIPHER_PARAM_CTS, &cts);
351 params[7] = OSSL_PARAM_construct_int(OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK,
352 &multiblock);
353 params[8] = OSSL_PARAM_construct_end();
459b15d4 354 ok = evp_do_ciph_getparams(cipher, params);
3c957bcd 355 if (ok) {
3c957bcd
SL
356 cipher->block_size = blksz;
357 cipher->iv_len = ivlen;
358 cipher->key_len = keylen;
a054d15c
SL
359 cipher->flags = mode;
360 if (aead)
361 cipher->flags |= EVP_CIPH_FLAG_AEAD_CIPHER;
362 if (custom_iv)
363 cipher->flags |= EVP_CIPH_CUSTOM_IV;
364 if (cts)
365 cipher->flags |= EVP_CIPH_FLAG_CTS;
366 if (multiblock)
367 cipher->flags |= EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK;
368 /* Provided implementations may have a custom cipher_cipher */
369 if (cipher->prov != NULL && cipher->ccipher != NULL)
370 cipher->flags |= EVP_CIPH_FLAG_CUSTOM_CIPHER;
3c957bcd
SL
371 }
372 return ok;
373}
13273237 374
3c957bcd
SL
375int EVP_CIPHER_block_size(const EVP_CIPHER *cipher)
376{
377 return cipher->block_size;
0f113f3e 378}
7806f3dd 379
6343829a 380int EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx)
0f113f3e 381{
718b133a 382 return EVP_CIPHER_block_size(ctx->cipher);
0f113f3e 383}
7806f3dd 384
e79f8773
RL
385int EVP_CIPHER_impl_ctx_size(const EVP_CIPHER *e)
386{
387 return e->ctx_size;
388}
389
0f113f3e
MC
390int EVP_Cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
391 const unsigned char *in, unsigned int inl)
392{
718b133a 393 if (ctx->cipher->prov != NULL) {
f7397f0d
RL
394 /*
395 * If the provided implementation has a ccipher function, we use it,
396 * and translate its return value like this: 0 => -1, 1 => outlen
397 *
398 * Otherwise, we call the cupdate function if in != NULL, or cfinal
399 * if in == NULL. Regardless of which, we return what we got.
400 */
401 int ret = -1;
402 size_t outl = 0;
403 size_t blocksize = EVP_CIPHER_CTX_block_size(ctx);
f79858ac 404
718b133a 405 if (ctx->cipher->ccipher != NULL)
f7397f0d
RL
406 ret = ctx->cipher->ccipher(ctx->provctx, out, &outl,
407 inl + (blocksize == 1 ? 0 : blocksize),
408 in, (size_t)inl)
409 ? (int)outl : -1;
410 else if (in != NULL)
411 ret = ctx->cipher->cupdate(ctx->provctx, out, &outl,
412 inl + (blocksize == 1 ? 0 : blocksize),
413 in, (size_t)inl);
414 else
415 ret = ctx->cipher->cfinal(ctx->provctx, out, &outl,
416 blocksize == 1 ? 0 : blocksize);
417
418 return ret;
718b133a
MC
419 }
420
0f113f3e
MC
421 return ctx->cipher->do_cipher(ctx, out, in, inl);
422}
7806f3dd
NL
423
424const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx)
0f113f3e
MC
425{
426 return ctx->cipher;
427}
7806f3dd 428
83b06347
RL
429int EVP_CIPHER_CTX_encrypting(const EVP_CIPHER_CTX *ctx)
430{
431 return ctx->encrypt;
432}
433
7806f3dd 434unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher)
0f113f3e 435{
3c957bcd 436 return cipher->flags;
0f113f3e 437}
7806f3dd 438
7806f3dd 439void *EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx)
0f113f3e
MC
440{
441 return ctx->app_data;
442}
7806f3dd
NL
443
444void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx, void *data)
0f113f3e
MC
445{
446 ctx->app_data = data;
447}
7806f3dd 448
44ab2dfd 449void *EVP_CIPHER_CTX_get_cipher_data(const EVP_CIPHER_CTX *ctx)
83b06347
RL
450{
451 return ctx->cipher_data;
452}
453
98ee7543
MC
454void *EVP_CIPHER_CTX_set_cipher_data(EVP_CIPHER_CTX *ctx, void *cipher_data)
455{
456 void *old_cipher_data;
457
458 old_cipher_data = ctx->cipher_data;
459 ctx->cipher_data = cipher_data;
460
461 return old_cipher_data;
462}
463
6343829a 464int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher)
0f113f3e 465{
3c957bcd 466 return cipher->iv_len;
0f113f3e 467}
7806f3dd 468
6343829a 469int EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx)
0f113f3e 470{
88d87082
SL
471 int rv, len = EVP_CIPHER_iv_length(ctx->cipher);
472 size_t v = len;
a672a02a
SL
473 OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
474
1c3ace68 475 params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_IVLEN, &v);
7dddf2fc
SL
476 rv = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->provctx, params);
477 if (rv == EVP_CTRL_RET_UNSUPPORTED)
478 goto legacy;
1c3ace68 479 return rv != 0 ? (int)v : -1;
7dddf2fc
SL
480 /* TODO (3.0) Remove legacy support */
481legacy:
482 if ((EVP_CIPHER_flags(ctx->cipher) & EVP_CIPH_CUSTOM_IV_LENGTH) != 0) {
483 rv = EVP_CIPHER_CTX_ctrl((EVP_CIPHER_CTX *)ctx, EVP_CTRL_GET_IVLEN,
484 0, &len);
88d87082 485 return (rv == 1) ? len : -1;
7dddf2fc 486 }
88d87082 487 return len;
0f113f3e 488}
7806f3dd 489
dc64dc2e
SL
490int EVP_CIPHER_CTX_tag_length(const EVP_CIPHER_CTX *ctx)
491{
492 int ret;
493 size_t v = 0;
494 OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
495
496 params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_AEAD_TAGLEN, &v);
497 ret = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->provctx, params);
498 return ret == 1 ? (int)v : 0;
499}
500
79f4417e 501#ifndef OPENSSL_NO_DEPRECATED_3_0
83b06347
RL
502const unsigned char *EVP_CIPHER_CTX_original_iv(const EVP_CIPHER_CTX *ctx)
503{
089cb623
SL
504 int ok;
505 const unsigned char *v = ctx->oiv;
506 OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
507
508 params[0] =
509 OSSL_PARAM_construct_octet_ptr(OSSL_CIPHER_PARAM_IV,
510 (void **)&v, sizeof(ctx->oiv));
511 ok = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->provctx, params);
512
513 return ok != 0 ? v : NULL;
83b06347
RL
514}
515
13273237
RL
516/*
517 * OSSL_PARAM_OCTET_PTR gets us the pointer to the running IV in the provider
518 */
83b06347
RL
519const unsigned char *EVP_CIPHER_CTX_iv(const EVP_CIPHER_CTX *ctx)
520{
459b15d4 521 int ok;
13273237 522 const unsigned char *v = ctx->iv;
459b15d4 523 OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
13273237 524
459b15d4 525 params[0] =
0d83b7b9
TM
526 OSSL_PARAM_construct_octet_ptr(OSSL_CIPHER_PARAM_UPDATED_IV,
527 (void **)&v, sizeof(ctx->iv));
459b15d4
SL
528 ok = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->provctx, params);
529
530 return ok != 0 ? v : NULL;
83b06347
RL
531}
532
533unsigned char *EVP_CIPHER_CTX_iv_noconst(EVP_CIPHER_CTX *ctx)
534{
459b15d4 535 int ok;
13273237 536 unsigned char *v = ctx->iv;
459b15d4
SL
537 OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
538
539 params[0] =
0d83b7b9
TM
540 OSSL_PARAM_construct_octet_ptr(OSSL_CIPHER_PARAM_UPDATED_IV,
541 (void **)&v, sizeof(ctx->iv));
459b15d4 542 ok = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->provctx, params);
13273237 543
459b15d4 544 return ok != 0 ? v : NULL;
83b06347 545}
79f4417e
BK
546#endif /* OPENSSL_NO_DEPRECATED_3_0_0 */
547
0d83b7b9 548int EVP_CIPHER_CTX_get_updated_iv(EVP_CIPHER_CTX *ctx, void *buf, size_t len)
79f4417e
BK
549{
550 OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
551
552 params[0] =
0d83b7b9 553 OSSL_PARAM_construct_octet_string(OSSL_CIPHER_PARAM_UPDATED_IV, buf, len);
79f4417e
BK
554 return evp_do_ciph_ctx_getparams(ctx->cipher, ctx->provctx, params);
555}
556
0d83b7b9 557int EVP_CIPHER_CTX_get_original_iv(EVP_CIPHER_CTX *ctx, void *buf, size_t len)
79f4417e
BK
558{
559 OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
560
561 params[0] =
562 OSSL_PARAM_construct_octet_string(OSSL_CIPHER_PARAM_IV, buf, len);
563 return evp_do_ciph_ctx_getparams(ctx->cipher, ctx->provctx, params);
564}
83b06347
RL
565
566unsigned char *EVP_CIPHER_CTX_buf_noconst(EVP_CIPHER_CTX *ctx)
567{
568 return ctx->buf;
569}
570
571int EVP_CIPHER_CTX_num(const EVP_CIPHER_CTX *ctx)
572{
1c3ace68
SL
573 int ok;
574 unsigned int v = (unsigned int)ctx->num;
459b15d4 575 OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
13273237 576
1c3ace68 577 params[0] = OSSL_PARAM_construct_uint(OSSL_CIPHER_PARAM_NUM, &v);
459b15d4
SL
578 ok = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->provctx, params);
579
1c3ace68 580 return ok != 0 ? (int)v : EVP_CTRL_RET_UNSUPPORTED;
83b06347
RL
581}
582
13273237 583int EVP_CIPHER_CTX_set_num(EVP_CIPHER_CTX *ctx, int num)
83b06347 584{
459b15d4 585 int ok;
1c3ace68 586 unsigned int n = (unsigned int)num;
459b15d4 587 OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
13273237 588
1c3ace68 589 params[0] = OSSL_PARAM_construct_uint(OSSL_CIPHER_PARAM_NUM, &n);
459b15d4
SL
590 ok = evp_do_ciph_ctx_setparams(ctx->cipher, ctx->provctx, params);
591
592 if (ok != 0)
1c3ace68 593 ctx->num = (int)n;
13273237 594 return ok != 0;
83b06347
RL
595}
596
6343829a 597int EVP_CIPHER_key_length(const EVP_CIPHER *cipher)
0f113f3e 598{
3c957bcd 599 return cipher->key_len;
0f113f3e 600}
7806f3dd 601
6343829a 602int EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx)
0f113f3e 603{
1c3ace68
SL
604 int ok;
605 size_t v = ctx->key_len;
459b15d4
SL
606 OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
607
1c3ace68 608 params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_KEYLEN, &v);
459b15d4 609 ok = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->provctx, params);
13273237 610
1c3ace68 611 return ok != 0 ? (int)v : EVP_CTRL_RET_UNSUPPORTED;
0f113f3e 612}
7806f3dd
NL
613
614int EVP_CIPHER_nid(const EVP_CIPHER *cipher)
0f113f3e
MC
615{
616 return cipher->nid;
617}
7806f3dd
NL
618
619int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ctx)
0f113f3e
MC
620{
621 return ctx->cipher->nid;
622}
7806f3dd 623
7cfa1717
RL
624int EVP_CIPHER_is_a(const EVP_CIPHER *cipher, const char *name)
625{
e4a1d023
RL
626 if (cipher->prov != NULL)
627 return evp_is_a(cipher->prov, cipher->name_id, NULL, name);
628 return evp_is_a(NULL, 0, EVP_CIPHER_name(cipher), name);
7cfa1717
RL
629}
630
506cb0f6
RL
631int EVP_CIPHER_number(const EVP_CIPHER *cipher)
632{
633 return cipher->name_id;
634}
635
c750bc08
RL
636const char *EVP_CIPHER_name(const EVP_CIPHER *cipher)
637{
638 if (cipher->prov != NULL)
f7c16d48 639 return evp_first_name(cipher->prov, cipher->name_id);
f844f9eb 640#ifndef FIPS_MODULE
c750bc08
RL
641 return OBJ_nid2sn(EVP_CIPHER_nid(cipher));
642#else
643 return NULL;
644#endif
645}
646
d84f5515
MC
647int EVP_CIPHER_names_do_all(const EVP_CIPHER *cipher,
648 void (*fn)(const char *name, void *data),
649 void *data)
f651c727
RL
650{
651 if (cipher->prov != NULL)
d84f5515
MC
652 return evp_names_do_all(cipher->prov, cipher->name_id, fn, data);
653
654 return 1;
f651c727
RL
655}
656
1d2622d4
RL
657const OSSL_PROVIDER *EVP_CIPHER_provider(const EVP_CIPHER *cipher)
658{
659 return cipher->prov;
660}
661
718b133a
MC
662int EVP_CIPHER_mode(const EVP_CIPHER *cipher)
663{
3c957bcd 664 return EVP_CIPHER_flags(cipher) & EVP_CIPH_MODE;
459b15d4 665}
718b133a 666
251e610c
RL
667int EVP_MD_is_a(const EVP_MD *md, const char *name)
668{
e4a1d023
RL
669 if (md->prov != NULL)
670 return evp_is_a(md->prov, md->name_id, NULL, name);
671 return evp_is_a(NULL, 0, EVP_MD_name(md), name);
251e610c
RL
672}
673
506cb0f6
RL
674int EVP_MD_number(const EVP_MD *md)
675{
676 return md->name_id;
677}
678
c750bc08
RL
679const char *EVP_MD_name(const EVP_MD *md)
680{
681 if (md->prov != NULL)
f7c16d48 682 return evp_first_name(md->prov, md->name_id);
f844f9eb 683#ifndef FIPS_MODULE
c750bc08
RL
684 return OBJ_nid2sn(EVP_MD_nid(md));
685#else
686 return NULL;
687#endif
688}
689
d84f5515
MC
690int EVP_MD_names_do_all(const EVP_MD *md,
691 void (*fn)(const char *name, void *data),
692 void *data)
f651c727
RL
693{
694 if (md->prov != NULL)
d84f5515
MC
695 return evp_names_do_all(md->prov, md->name_id, fn, data);
696
697 return 1;
f651c727
RL
698}
699
1d2622d4
RL
700const OSSL_PROVIDER *EVP_MD_provider(const EVP_MD *md)
701{
702 return md->prov;
703}
704
7806f3dd 705int EVP_MD_type(const EVP_MD *md)
0f113f3e
MC
706{
707 return md->type;
708}
7806f3dd
NL
709
710int EVP_MD_pkey_type(const EVP_MD *md)
0f113f3e
MC
711{
712 return md->pkey_type;
713}
7806f3dd 714
a054d15c
SL
715int EVP_MD_block_size(const EVP_MD *md)
716{
717 if (md == NULL) {
718 ERR_raise(ERR_LIB_EVP, EVP_R_MESSAGE_DIGEST_IS_NULL);
719 return -1;
720 }
721 return md->block_size;
722}
723
6343829a 724int EVP_MD_size(const EVP_MD *md)
0f113f3e 725{
6a3b7c68 726 if (md == NULL) {
9311d0c4 727 ERR_raise(ERR_LIB_EVP, EVP_R_MESSAGE_DIGEST_IS_NULL);
0f113f3e
MC
728 return -1;
729 }
38f79314 730 return md->md_size;
0f113f3e 731}
7806f3dd 732
e5fa864f 733unsigned long EVP_MD_flags(const EVP_MD *md)
0f113f3e 734{
38f79314 735 return md->flags;
0f113f3e 736}
e5fa864f 737
2db6bf6f
RL
738EVP_MD *EVP_MD_meth_new(int md_type, int pkey_type)
739{
3fd70262 740 EVP_MD *md = evp_md_new();
43ecb9c3 741
2db6bf6f
RL
742 if (md != NULL) {
743 md->type = md_type;
744 md->pkey_type = pkey_type;
745 }
746 return md;
747}
df05f2ce 748
2db6bf6f
RL
749EVP_MD *EVP_MD_meth_dup(const EVP_MD *md)
750{
3fd70262
RL
751 EVP_MD *to = NULL;
752
753 /*
754 * Non-legacy EVP_MDs can't be duplicated like this.
755 * Use EVP_MD_up_ref() instead.
756 */
757 if (md->prov != NULL)
758 return NULL;
43ecb9c3 759
3fd70262 760 if ((to = EVP_MD_meth_new(md->type, md->pkey_type)) != NULL) {
df05f2ce 761 CRYPTO_RWLOCK *lock = to->lock;
3fd70262 762
2db6bf6f 763 memcpy(to, md, sizeof(*to));
df05f2ce
MC
764 to->lock = lock;
765 }
2db6bf6f
RL
766 return to;
767}
3653d0c2 768
2db6bf6f
RL
769void EVP_MD_meth_free(EVP_MD *md)
770{
3fd70262 771 EVP_MD_free(md);
2db6bf6f
RL
772}
773int EVP_MD_meth_set_input_blocksize(EVP_MD *md, int blocksize)
774{
8bbc7f22
DB
775 if (md->block_size != 0)
776 return 0;
777
2db6bf6f
RL
778 md->block_size = blocksize;
779 return 1;
780}
781int EVP_MD_meth_set_result_size(EVP_MD *md, int resultsize)
782{
8bbc7f22
DB
783 if (md->md_size != 0)
784 return 0;
785
2db6bf6f
RL
786 md->md_size = resultsize;
787 return 1;
788}
789int EVP_MD_meth_set_app_datasize(EVP_MD *md, int datasize)
790{
8bbc7f22
DB
791 if (md->ctx_size != 0)
792 return 0;
793
2db6bf6f
RL
794 md->ctx_size = datasize;
795 return 1;
796}
797int EVP_MD_meth_set_flags(EVP_MD *md, unsigned long flags)
798{
8bbc7f22
DB
799 if (md->flags != 0)
800 return 0;
801
2db6bf6f
RL
802 md->flags = flags;
803 return 1;
804}
805int EVP_MD_meth_set_init(EVP_MD *md, int (*init)(EVP_MD_CTX *ctx))
806{
8bbc7f22
DB
807 if (md->init != NULL)
808 return 0;
809
2db6bf6f
RL
810 md->init = init;
811 return 1;
812}
813int EVP_MD_meth_set_update(EVP_MD *md, int (*update)(EVP_MD_CTX *ctx,
814 const void *data,
815 size_t count))
816{
8bbc7f22
DB
817 if (md->update != NULL)
818 return 0;
819
2db6bf6f
RL
820 md->update = update;
821 return 1;
822}
823int EVP_MD_meth_set_final(EVP_MD *md, int (*final)(EVP_MD_CTX *ctx,
824 unsigned char *md))
825{
8bbc7f22
DB
826 if (md->final != NULL)
827 return 0;
828
2db6bf6f
RL
829 md->final = final;
830 return 1;
831}
832int EVP_MD_meth_set_copy(EVP_MD *md, int (*copy)(EVP_MD_CTX *to,
833 const EVP_MD_CTX *from))
834{
8bbc7f22
DB
835 if (md->copy != NULL)
836 return 0;
837
2db6bf6f
RL
838 md->copy = copy;
839 return 1;
840}
841int EVP_MD_meth_set_cleanup(EVP_MD *md, int (*cleanup)(EVP_MD_CTX *ctx))
842{
8bbc7f22
DB
843 if (md->cleanup != NULL)
844 return 0;
845
2db6bf6f
RL
846 md->cleanup = cleanup;
847 return 1;
848}
849int EVP_MD_meth_set_ctrl(EVP_MD *md, int (*ctrl)(EVP_MD_CTX *ctx, int cmd,
850 int p1, void *p2))
851{
8bbc7f22
DB
852 if (md->md_ctrl != NULL)
853 return 0;
854
2db6bf6f
RL
855 md->md_ctrl = ctrl;
856 return 1;
857}
858
859int EVP_MD_meth_get_input_blocksize(const EVP_MD *md)
860{
861 return md->block_size;
862}
863int EVP_MD_meth_get_result_size(const EVP_MD *md)
864{
865 return md->md_size;
866}
867int EVP_MD_meth_get_app_datasize(const EVP_MD *md)
868{
869 return md->ctx_size;
870}
871unsigned long EVP_MD_meth_get_flags(const EVP_MD *md)
872{
8bfa99f0 873 return md->flags;
2db6bf6f
RL
874}
875int (*EVP_MD_meth_get_init(const EVP_MD *md))(EVP_MD_CTX *ctx)
876{
877 return md->init;
878}
879int (*EVP_MD_meth_get_update(const EVP_MD *md))(EVP_MD_CTX *ctx,
880 const void *data,
881 size_t count)
882{
883 return md->update;
884}
885int (*EVP_MD_meth_get_final(const EVP_MD *md))(EVP_MD_CTX *ctx,
886 unsigned char *md)
887{
888 return md->final;
889}
890int (*EVP_MD_meth_get_copy(const EVP_MD *md))(EVP_MD_CTX *to,
891 const EVP_MD_CTX *from)
892{
893 return md->copy;
894}
895int (*EVP_MD_meth_get_cleanup(const EVP_MD *md))(EVP_MD_CTX *ctx)
896{
897 return md->cleanup;
898}
899int (*EVP_MD_meth_get_ctrl(const EVP_MD *md))(EVP_MD_CTX *ctx, int cmd,
900 int p1, void *p2)
901{
902 return md->md_ctrl;
903}
904
7806f3dd 905const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx)
0f113f3e 906{
b7c913c8 907 if (ctx == NULL)
0f113f3e 908 return NULL;
b7c913c8 909 return ctx->reqdigest;
0f113f3e 910}
7806f3dd 911
7638370c
RL
912EVP_PKEY_CTX *EVP_MD_CTX_pkey_ctx(const EVP_MD_CTX *ctx)
913{
914 return ctx->pctx;
915}
916
f844f9eb 917#if !defined(FIPS_MODULE)
319e518a 918/* TODO(3.0): EVP_DigestSign* not yet supported in FIPS module */
00902d94
PY
919void EVP_MD_CTX_set_pkey_ctx(EVP_MD_CTX *ctx, EVP_PKEY_CTX *pctx)
920{
81c79453
PY
921 /*
922 * it's reasonable to set NULL pctx (a.k.a clear the ctx->pctx), so
923 * we have to deal with the cleanup job here.
924 */
925 if (!EVP_MD_CTX_test_flags(ctx, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX))
926 EVP_PKEY_CTX_free(ctx->pctx);
927
00902d94 928 ctx->pctx = pctx;
81c79453
PY
929
930 if (pctx != NULL) {
931 /* make sure pctx is not freed when destroying EVP_MD_CTX */
932 EVP_MD_CTX_set_flags(ctx, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX);
933 } else {
934 EVP_MD_CTX_clear_flags(ctx, EVP_MD_CTX_FLAG_KEEP_PKEY_CTX);
935 }
00902d94 936}
f844f9eb 937#endif /* !defined(FIPS_MODULE) */
00902d94 938
7638370c
RL
939void *EVP_MD_CTX_md_data(const EVP_MD_CTX *ctx)
940{
941 return ctx->md_data;
942}
943
944int (*EVP_MD_CTX_update_fn(EVP_MD_CTX *ctx))(EVP_MD_CTX *ctx,
945 const void *data, size_t count)
946{
947 return ctx->update;
948}
949
950void EVP_MD_CTX_set_update_fn(EVP_MD_CTX *ctx,
951 int (*update) (EVP_MD_CTX *ctx,
952 const void *data, size_t count))
953{
954 ctx->update = update;
955}
956
7806f3dd 957void EVP_MD_CTX_set_flags(EVP_MD_CTX *ctx, int flags)
0f113f3e
MC
958{
959 ctx->flags |= flags;
960}
7806f3dd
NL
961
962void EVP_MD_CTX_clear_flags(EVP_MD_CTX *ctx, int flags)
0f113f3e
MC
963{
964 ctx->flags &= ~flags;
965}
7806f3dd
NL
966
967int EVP_MD_CTX_test_flags(const EVP_MD_CTX *ctx, int flags)
0f113f3e
MC
968{
969 return (ctx->flags & flags);
970}
e92f9f45
DSH
971
972void EVP_CIPHER_CTX_set_flags(EVP_CIPHER_CTX *ctx, int flags)
0f113f3e
MC
973{
974 ctx->flags |= flags;
975}
e92f9f45
DSH
976
977void EVP_CIPHER_CTX_clear_flags(EVP_CIPHER_CTX *ctx, int flags)
0f113f3e
MC
978{
979 ctx->flags &= ~flags;
980}
e92f9f45
DSH
981
982int EVP_CIPHER_CTX_test_flags(const EVP_CIPHER_CTX *ctx, int flags)
0f113f3e
MC
983{
984 return (ctx->flags & flags);
985}
f842b6b2 986
11a1b341
MC
987int EVP_PKEY_CTX_set_group_name(EVP_PKEY_CTX *ctx, const char *name)
988{
989 OSSL_PARAM params[] = { OSSL_PARAM_END, OSSL_PARAM_END };
023b188c 990
6fcd92d3 991 if (ctx == NULL || !EVP_PKEY_CTX_IS_GEN_OP(ctx)) {
11a1b341
MC
992 ERR_raise(ERR_LIB_EVP, EVP_R_COMMAND_NOT_SUPPORTED);
993 /* Uses the same return values as EVP_PKEY_CTX_ctrl */
994 return -2;
995 }
996
997 if (name == NULL)
998 return -1;
999
6fcd92d3
RL
1000 params[0] = OSSL_PARAM_construct_utf8_string(OSSL_PKEY_PARAM_GROUP_NAME,
1001 (char *)name, 0);
11a1b341
MC
1002 return EVP_PKEY_CTX_set_params(ctx, params);
1003}
1004
1005int EVP_PKEY_CTX_get_group_name(EVP_PKEY_CTX *ctx, char *name, size_t namelen)
1006{
1007 OSSL_PARAM params[] = { OSSL_PARAM_END, OSSL_PARAM_END };
1008 OSSL_PARAM *p = params;
1009
1010 if (ctx == NULL || !EVP_PKEY_CTX_IS_GEN_OP(ctx)) {
023b188c 1011 /* There is no legacy support for this */
11a1b341
MC
1012 ERR_raise(ERR_LIB_EVP, EVP_R_COMMAND_NOT_SUPPORTED);
1013 /* Uses the same return values as EVP_PKEY_CTX_ctrl */
1014 return -2;
1015 }
1016
1017 if (name == NULL)
1018 return -1;
1019
1020 *p++ = OSSL_PARAM_construct_utf8_string(OSSL_PKEY_PARAM_GROUP_NAME,
1021 name, namelen);
1022 if (!EVP_PKEY_CTX_get_params(ctx, params))
1023 return -1;
1024 return 1;
1025}