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