]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/evp/p_lib.c
Allow EVP_PKEY_get0_RSA for RSA-PSS keys
[thirdparty/openssl.git] / crypto / evp / p_lib.c
1 /*
2 * Copyright 1995-2018 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 "internal/refcount.h"
13 #include <openssl/bn.h>
14 #include <openssl/err.h>
15 #include <openssl/objects.h>
16 #include <openssl/evp.h>
17 #include <openssl/x509.h>
18 #include <openssl/rsa.h>
19 #include <openssl/dsa.h>
20 #include <openssl/dh.h>
21 #include <openssl/cmac.h>
22 #include <openssl/engine.h>
23 #include <openssl/params.h>
24 #include <openssl/core_names.h>
25
26 #include "crypto/asn1.h"
27 #include "crypto/evp.h"
28 #include "internal/provider.h"
29
30 static void EVP_PKEY_free_it(EVP_PKEY *x);
31
32 int EVP_PKEY_bits(const EVP_PKEY *pkey)
33 {
34 if (pkey && pkey->ameth && pkey->ameth->pkey_bits)
35 return pkey->ameth->pkey_bits(pkey);
36 return 0;
37 }
38
39 int EVP_PKEY_security_bits(const EVP_PKEY *pkey)
40 {
41 if (pkey == NULL)
42 return 0;
43 if (pkey->ameth == NULL || pkey->ameth->pkey_security_bits == NULL)
44 return -2;
45 return pkey->ameth->pkey_security_bits(pkey);
46 }
47
48 int EVP_PKEY_size(const EVP_PKEY *pkey)
49 {
50 if (pkey && pkey->ameth && pkey->ameth->pkey_size)
51 return pkey->ameth->pkey_size(pkey);
52 return 0;
53 }
54
55 int EVP_PKEY_save_parameters(EVP_PKEY *pkey, int mode)
56 {
57 #ifndef OPENSSL_NO_DSA
58 if (pkey->type == EVP_PKEY_DSA) {
59 int ret = pkey->save_parameters;
60
61 if (mode >= 0)
62 pkey->save_parameters = mode;
63 return ret;
64 }
65 #endif
66 #ifndef OPENSSL_NO_EC
67 if (pkey->type == EVP_PKEY_EC) {
68 int ret = pkey->save_parameters;
69
70 if (mode >= 0)
71 pkey->save_parameters = mode;
72 return ret;
73 }
74 #endif
75 return 0;
76 }
77
78 int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
79 {
80 if (to->type == EVP_PKEY_NONE) {
81 if (EVP_PKEY_set_type(to, from->type) == 0)
82 return 0;
83 } else if (to->type != from->type) {
84 EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS, EVP_R_DIFFERENT_KEY_TYPES);
85 goto err;
86 }
87
88 if (EVP_PKEY_missing_parameters(from)) {
89 EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS, EVP_R_MISSING_PARAMETERS);
90 goto err;
91 }
92
93 if (!EVP_PKEY_missing_parameters(to)) {
94 if (EVP_PKEY_cmp_parameters(to, from) == 1)
95 return 1;
96 EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS, EVP_R_DIFFERENT_PARAMETERS);
97 return 0;
98 }
99
100 if (from->ameth && from->ameth->param_copy)
101 return from->ameth->param_copy(to, from);
102 err:
103 return 0;
104 }
105
106 int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey)
107 {
108 if (pkey->ameth && pkey->ameth->param_missing)
109 return pkey->ameth->param_missing(pkey);
110 return 0;
111 }
112
113 int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
114 {
115 if (a->type != b->type)
116 return -1;
117 if (a->ameth && a->ameth->param_cmp)
118 return a->ameth->param_cmp(a, b);
119 return -2;
120 }
121
122 int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
123 {
124 if (a->type != b->type)
125 return -1;
126
127 if (a->ameth) {
128 int ret;
129 /* Compare parameters if the algorithm has them */
130 if (a->ameth->param_cmp) {
131 ret = a->ameth->param_cmp(a, b);
132 if (ret <= 0)
133 return ret;
134 }
135
136 if (a->ameth->pub_cmp)
137 return a->ameth->pub_cmp(a, b);
138 }
139
140 return -2;
141 }
142
143 EVP_PKEY *EVP_PKEY_new(void)
144 {
145 EVP_PKEY *ret = OPENSSL_zalloc(sizeof(*ret));
146
147 if (ret == NULL) {
148 EVPerr(EVP_F_EVP_PKEY_NEW, ERR_R_MALLOC_FAILURE);
149 return NULL;
150 }
151 ret->type = EVP_PKEY_NONE;
152 ret->save_type = EVP_PKEY_NONE;
153 ret->references = 1;
154 ret->save_parameters = 1;
155 ret->lock = CRYPTO_THREAD_lock_new();
156 if (ret->lock == NULL) {
157 EVPerr(EVP_F_EVP_PKEY_NEW, ERR_R_MALLOC_FAILURE);
158 OPENSSL_free(ret);
159 return NULL;
160 }
161 return ret;
162 }
163
164 int EVP_PKEY_up_ref(EVP_PKEY *pkey)
165 {
166 int i;
167
168 if (CRYPTO_UP_REF(&pkey->references, &i, pkey->lock) <= 0)
169 return 0;
170
171 REF_PRINT_COUNT("EVP_PKEY", pkey);
172 REF_ASSERT_ISNT(i < 2);
173 return ((i > 1) ? 1 : 0);
174 }
175
176 /*
177 * Setup a public key ASN1 method and ENGINE from a NID or a string. If pkey
178 * is NULL just return 1 or 0 if the algorithm exists.
179 */
180
181 static int pkey_set_type(EVP_PKEY *pkey, ENGINE *e, int type, const char *str,
182 int len)
183 {
184 const EVP_PKEY_ASN1_METHOD *ameth;
185 ENGINE **eptr = (e == NULL) ? &e : NULL;
186
187 if (pkey) {
188 if (pkey->pkey.ptr)
189 EVP_PKEY_free_it(pkey);
190 /*
191 * If key type matches and a method exists then this lookup has
192 * succeeded once so just indicate success.
193 */
194 if ((type == pkey->save_type) && pkey->ameth)
195 return 1;
196 #ifndef OPENSSL_NO_ENGINE
197 /* If we have ENGINEs release them */
198 ENGINE_finish(pkey->engine);
199 pkey->engine = NULL;
200 ENGINE_finish(pkey->pmeth_engine);
201 pkey->pmeth_engine = NULL;
202 #endif
203 }
204 if (str)
205 ameth = EVP_PKEY_asn1_find_str(eptr, str, len);
206 else
207 ameth = EVP_PKEY_asn1_find(eptr, type);
208 #ifndef OPENSSL_NO_ENGINE
209 if (pkey == NULL && eptr != NULL)
210 ENGINE_finish(e);
211 #endif
212 if (ameth == NULL) {
213 EVPerr(EVP_F_PKEY_SET_TYPE, EVP_R_UNSUPPORTED_ALGORITHM);
214 return 0;
215 }
216 if (pkey) {
217 pkey->ameth = ameth;
218 pkey->engine = e;
219
220 pkey->type = pkey->ameth->pkey_id;
221 pkey->save_type = type;
222 }
223 return 1;
224 }
225
226 EVP_PKEY *EVP_PKEY_new_raw_private_key(int type, ENGINE *e,
227 const unsigned char *priv,
228 size_t len)
229 {
230 EVP_PKEY *ret = EVP_PKEY_new();
231
232 if (ret == NULL
233 || !pkey_set_type(ret, e, type, NULL, -1)) {
234 /* EVPerr already called */
235 goto err;
236 }
237
238 if (ret->ameth->set_priv_key == NULL) {
239 EVPerr(EVP_F_EVP_PKEY_NEW_RAW_PRIVATE_KEY,
240 EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
241 goto err;
242 }
243
244 if (!ret->ameth->set_priv_key(ret, priv, len)) {
245 EVPerr(EVP_F_EVP_PKEY_NEW_RAW_PRIVATE_KEY, EVP_R_KEY_SETUP_FAILED);
246 goto err;
247 }
248
249 return ret;
250
251 err:
252 EVP_PKEY_free(ret);
253 return NULL;
254 }
255
256 EVP_PKEY *EVP_PKEY_new_raw_public_key(int type, ENGINE *e,
257 const unsigned char *pub,
258 size_t len)
259 {
260 EVP_PKEY *ret = EVP_PKEY_new();
261
262 if (ret == NULL
263 || !pkey_set_type(ret, e, type, NULL, -1)) {
264 /* EVPerr already called */
265 goto err;
266 }
267
268 if (ret->ameth->set_pub_key == NULL) {
269 EVPerr(EVP_F_EVP_PKEY_NEW_RAW_PUBLIC_KEY,
270 EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
271 goto err;
272 }
273
274 if (!ret->ameth->set_pub_key(ret, pub, len)) {
275 EVPerr(EVP_F_EVP_PKEY_NEW_RAW_PUBLIC_KEY, EVP_R_KEY_SETUP_FAILED);
276 goto err;
277 }
278
279 return ret;
280
281 err:
282 EVP_PKEY_free(ret);
283 return NULL;
284 }
285
286 int EVP_PKEY_get_raw_private_key(const EVP_PKEY *pkey, unsigned char *priv,
287 size_t *len)
288 {
289 if (pkey->ameth->get_priv_key == NULL) {
290 EVPerr(EVP_F_EVP_PKEY_GET_RAW_PRIVATE_KEY,
291 EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
292 return 0;
293 }
294
295 if (!pkey->ameth->get_priv_key(pkey, priv, len)) {
296 EVPerr(EVP_F_EVP_PKEY_GET_RAW_PRIVATE_KEY, EVP_R_GET_RAW_KEY_FAILED);
297 return 0;
298 }
299
300 return 1;
301 }
302
303 int EVP_PKEY_get_raw_public_key(const EVP_PKEY *pkey, unsigned char *pub,
304 size_t *len)
305 {
306 if (pkey->ameth->get_pub_key == NULL) {
307 EVPerr(EVP_F_EVP_PKEY_GET_RAW_PUBLIC_KEY,
308 EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
309 return 0;
310 }
311
312 if (!pkey->ameth->get_pub_key(pkey, pub, len)) {
313 EVPerr(EVP_F_EVP_PKEY_GET_RAW_PUBLIC_KEY, EVP_R_GET_RAW_KEY_FAILED);
314 return 0;
315 }
316
317 return 1;
318 }
319
320 EVP_PKEY *EVP_PKEY_new_CMAC_key(ENGINE *e, const unsigned char *priv,
321 size_t len, const EVP_CIPHER *cipher)
322 {
323 #ifndef OPENSSL_NO_CMAC
324 # ifndef OPENSSL_NO_ENGINE
325 const char *engine_id = e != NULL ? ENGINE_get_id(e) : NULL;
326 # endif
327 const char *cipher_name = EVP_CIPHER_name(cipher);
328 const OSSL_PROVIDER *prov = EVP_CIPHER_provider(cipher);
329 OPENSSL_CTX *libctx =
330 prov == NULL ? NULL : ossl_provider_library_context(prov);
331 EVP_PKEY *ret = EVP_PKEY_new();
332 EVP_MAC *cmac = EVP_MAC_fetch(libctx, OSSL_MAC_NAME_CMAC, NULL);
333 EVP_MAC_CTX *cmctx = cmac != NULL ? EVP_MAC_CTX_new(cmac) : NULL;
334 OSSL_PARAM params[4];
335 size_t paramsn = 0;
336
337 if (ret == NULL
338 || cmctx == NULL
339 || !pkey_set_type(ret, e, EVP_PKEY_CMAC, NULL, -1)) {
340 /* EVPerr already called */
341 goto err;
342 }
343
344 # ifndef OPENSSL_NO_ENGINE
345 if (engine_id != NULL)
346 params[paramsn++] =
347 OSSL_PARAM_construct_utf8_string("engine", (char *)engine_id, 0);
348 # endif
349
350 params[paramsn++] =
351 OSSL_PARAM_construct_utf8_string(OSSL_MAC_PARAM_CIPHER,
352 (char *)cipher_name, 0);
353 params[paramsn++] =
354 OSSL_PARAM_construct_octet_string(OSSL_MAC_PARAM_KEY,
355 (char *)priv, len);
356 params[paramsn] = OSSL_PARAM_construct_end();
357
358 if (!EVP_MAC_CTX_set_params(cmctx, params)) {
359 EVPerr(EVP_F_EVP_PKEY_NEW_CMAC_KEY, EVP_R_KEY_SETUP_FAILED);
360 goto err;
361 }
362
363 ret->pkey.ptr = cmctx;
364 return ret;
365
366 err:
367 EVP_PKEY_free(ret);
368 EVP_MAC_CTX_free(cmctx);
369 EVP_MAC_free(cmac);
370 return NULL;
371 #else
372 EVPerr(EVP_F_EVP_PKEY_NEW_CMAC_KEY,
373 EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
374 return NULL;
375 #endif
376 }
377
378 int EVP_PKEY_set_type(EVP_PKEY *pkey, int type)
379 {
380 return pkey_set_type(pkey, NULL, type, NULL, -1);
381 }
382
383 int EVP_PKEY_set_type_str(EVP_PKEY *pkey, const char *str, int len)
384 {
385 return pkey_set_type(pkey, NULL, EVP_PKEY_NONE, str, len);
386 }
387
388 int EVP_PKEY_set_alias_type(EVP_PKEY *pkey, int type)
389 {
390 if (pkey->type == type) {
391 return 1; /* it already is that type */
392 }
393
394 /*
395 * The application is requesting to alias this to a different pkey type,
396 * but not one that resolves to the base type.
397 */
398 if (EVP_PKEY_type(type) != EVP_PKEY_base_id(pkey)) {
399 EVPerr(EVP_F_EVP_PKEY_SET_ALIAS_TYPE, EVP_R_UNSUPPORTED_ALGORITHM);
400 return 0;
401 }
402
403 pkey->type = type;
404 return 1;
405 }
406
407 #ifndef OPENSSL_NO_ENGINE
408 int EVP_PKEY_set1_engine(EVP_PKEY *pkey, ENGINE *e)
409 {
410 if (e != NULL) {
411 if (!ENGINE_init(e)) {
412 EVPerr(EVP_F_EVP_PKEY_SET1_ENGINE, ERR_R_ENGINE_LIB);
413 return 0;
414 }
415 if (ENGINE_get_pkey_meth(e, pkey->type) == NULL) {
416 ENGINE_finish(e);
417 EVPerr(EVP_F_EVP_PKEY_SET1_ENGINE, EVP_R_UNSUPPORTED_ALGORITHM);
418 return 0;
419 }
420 }
421 ENGINE_finish(pkey->pmeth_engine);
422 pkey->pmeth_engine = e;
423 return 1;
424 }
425
426 ENGINE *EVP_PKEY_get0_engine(const EVP_PKEY *pkey)
427 {
428 return pkey->engine;
429 }
430 #endif
431 int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key)
432 {
433 if (pkey == NULL || !EVP_PKEY_set_type(pkey, type))
434 return 0;
435 pkey->pkey.ptr = key;
436 return (key != NULL);
437 }
438
439 void *EVP_PKEY_get0(const EVP_PKEY *pkey)
440 {
441 return pkey->pkey.ptr;
442 }
443
444 const unsigned char *EVP_PKEY_get0_hmac(const EVP_PKEY *pkey, size_t *len)
445 {
446 ASN1_OCTET_STRING *os = NULL;
447 if (pkey->type != EVP_PKEY_HMAC) {
448 EVPerr(EVP_F_EVP_PKEY_GET0_HMAC, EVP_R_EXPECTING_AN_HMAC_KEY);
449 return NULL;
450 }
451 os = EVP_PKEY_get0(pkey);
452 *len = os->length;
453 return os->data;
454 }
455
456 #ifndef OPENSSL_NO_POLY1305
457 const unsigned char *EVP_PKEY_get0_poly1305(const EVP_PKEY *pkey, size_t *len)
458 {
459 ASN1_OCTET_STRING *os = NULL;
460 if (pkey->type != EVP_PKEY_POLY1305) {
461 EVPerr(EVP_F_EVP_PKEY_GET0_POLY1305, EVP_R_EXPECTING_A_POLY1305_KEY);
462 return NULL;
463 }
464 os = EVP_PKEY_get0(pkey);
465 *len = os->length;
466 return os->data;
467 }
468 #endif
469
470 #ifndef OPENSSL_NO_SIPHASH
471 const unsigned char *EVP_PKEY_get0_siphash(const EVP_PKEY *pkey, size_t *len)
472 {
473 ASN1_OCTET_STRING *os = NULL;
474
475 if (pkey->type != EVP_PKEY_SIPHASH) {
476 EVPerr(EVP_F_EVP_PKEY_GET0_SIPHASH, EVP_R_EXPECTING_A_SIPHASH_KEY);
477 return NULL;
478 }
479 os = EVP_PKEY_get0(pkey);
480 *len = os->length;
481 return os->data;
482 }
483 #endif
484
485 #ifndef OPENSSL_NO_RSA
486 int EVP_PKEY_set1_RSA(EVP_PKEY *pkey, RSA *key)
487 {
488 int ret = EVP_PKEY_assign_RSA(pkey, key);
489 if (ret)
490 RSA_up_ref(key);
491 return ret;
492 }
493
494 RSA *EVP_PKEY_get0_RSA(const EVP_PKEY *pkey)
495 {
496 if (pkey->type != EVP_PKEY_RSA && pkey->type != EVP_PKEY_RSA_PSS) {
497 EVPerr(EVP_F_EVP_PKEY_GET0_RSA, EVP_R_EXPECTING_AN_RSA_KEY);
498 return NULL;
499 }
500 return pkey->pkey.rsa;
501 }
502
503 RSA *EVP_PKEY_get1_RSA(EVP_PKEY *pkey)
504 {
505 RSA *ret = EVP_PKEY_get0_RSA(pkey);
506 if (ret != NULL)
507 RSA_up_ref(ret);
508 return ret;
509 }
510 #endif
511
512 #ifndef OPENSSL_NO_DSA
513 int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, DSA *key)
514 {
515 int ret = EVP_PKEY_assign_DSA(pkey, key);
516 if (ret)
517 DSA_up_ref(key);
518 return ret;
519 }
520
521 DSA *EVP_PKEY_get0_DSA(const EVP_PKEY *pkey)
522 {
523 if (pkey->type != EVP_PKEY_DSA) {
524 EVPerr(EVP_F_EVP_PKEY_GET0_DSA, EVP_R_EXPECTING_A_DSA_KEY);
525 return NULL;
526 }
527 return pkey->pkey.dsa;
528 }
529
530 DSA *EVP_PKEY_get1_DSA(EVP_PKEY *pkey)
531 {
532 DSA *ret = EVP_PKEY_get0_DSA(pkey);
533 if (ret != NULL)
534 DSA_up_ref(ret);
535 return ret;
536 }
537 #endif
538
539 #ifndef OPENSSL_NO_EC
540
541 int EVP_PKEY_set1_EC_KEY(EVP_PKEY *pkey, EC_KEY *key)
542 {
543 int ret = EVP_PKEY_assign_EC_KEY(pkey, key);
544 if (ret)
545 EC_KEY_up_ref(key);
546 return ret;
547 }
548
549 EC_KEY *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey)
550 {
551 if (pkey->type != EVP_PKEY_EC) {
552 EVPerr(EVP_F_EVP_PKEY_GET0_EC_KEY, EVP_R_EXPECTING_A_EC_KEY);
553 return NULL;
554 }
555 return pkey->pkey.ec;
556 }
557
558 EC_KEY *EVP_PKEY_get1_EC_KEY(EVP_PKEY *pkey)
559 {
560 EC_KEY *ret = EVP_PKEY_get0_EC_KEY(pkey);
561 if (ret != NULL)
562 EC_KEY_up_ref(ret);
563 return ret;
564 }
565 #endif
566
567 #ifndef OPENSSL_NO_DH
568
569 int EVP_PKEY_set1_DH(EVP_PKEY *pkey, DH *key)
570 {
571 int ret = EVP_PKEY_assign_DH(pkey, key);
572 if (ret)
573 DH_up_ref(key);
574 return ret;
575 }
576
577 DH *EVP_PKEY_get0_DH(const EVP_PKEY *pkey)
578 {
579 if (pkey->type != EVP_PKEY_DH && pkey->type != EVP_PKEY_DHX) {
580 EVPerr(EVP_F_EVP_PKEY_GET0_DH, EVP_R_EXPECTING_A_DH_KEY);
581 return NULL;
582 }
583 return pkey->pkey.dh;
584 }
585
586 DH *EVP_PKEY_get1_DH(EVP_PKEY *pkey)
587 {
588 DH *ret = EVP_PKEY_get0_DH(pkey);
589 if (ret != NULL)
590 DH_up_ref(ret);
591 return ret;
592 }
593 #endif
594
595 int EVP_PKEY_type(int type)
596 {
597 int ret;
598 const EVP_PKEY_ASN1_METHOD *ameth;
599 ENGINE *e;
600 ameth = EVP_PKEY_asn1_find(&e, type);
601 if (ameth)
602 ret = ameth->pkey_id;
603 else
604 ret = NID_undef;
605 #ifndef OPENSSL_NO_ENGINE
606 ENGINE_finish(e);
607 #endif
608 return ret;
609 }
610
611 int EVP_PKEY_id(const EVP_PKEY *pkey)
612 {
613 return pkey->type;
614 }
615
616 int EVP_PKEY_base_id(const EVP_PKEY *pkey)
617 {
618 return EVP_PKEY_type(pkey->type);
619 }
620
621 void EVP_PKEY_free(EVP_PKEY *x)
622 {
623 int i;
624
625 if (x == NULL)
626 return;
627
628 CRYPTO_DOWN_REF(&x->references, &i, x->lock);
629 REF_PRINT_COUNT("EVP_PKEY", x);
630 if (i > 0)
631 return;
632 REF_ASSERT_ISNT(i < 0);
633 EVP_PKEY_free_it(x);
634 CRYPTO_THREAD_lock_free(x->lock);
635 sk_X509_ATTRIBUTE_pop_free(x->attributes, X509_ATTRIBUTE_free);
636 OPENSSL_free(x);
637 }
638
639 static void EVP_PKEY_free_it(EVP_PKEY *x)
640 {
641 /* internal function; x is never NULL */
642
643 evp_keymgmt_clear_pkey_cache(x);
644
645 if (x->ameth && x->ameth->pkey_free) {
646 x->ameth->pkey_free(x);
647 x->pkey.ptr = NULL;
648 }
649 #ifndef OPENSSL_NO_ENGINE
650 ENGINE_finish(x->engine);
651 x->engine = NULL;
652 ENGINE_finish(x->pmeth_engine);
653 x->pmeth_engine = NULL;
654 #endif
655 }
656
657 static int unsup_alg(BIO *out, const EVP_PKEY *pkey, int indent,
658 const char *kstr)
659 {
660 BIO_indent(out, indent, 128);
661 BIO_printf(out, "%s algorithm \"%s\" unsupported\n",
662 kstr, OBJ_nid2ln(pkey->type));
663 return 1;
664 }
665
666 int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey,
667 int indent, ASN1_PCTX *pctx)
668 {
669 if (pkey->ameth && pkey->ameth->pub_print)
670 return pkey->ameth->pub_print(out, pkey, indent, pctx);
671
672 return unsup_alg(out, pkey, indent, "Public Key");
673 }
674
675 int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey,
676 int indent, ASN1_PCTX *pctx)
677 {
678 if (pkey->ameth && pkey->ameth->priv_print)
679 return pkey->ameth->priv_print(out, pkey, indent, pctx);
680
681 return unsup_alg(out, pkey, indent, "Private Key");
682 }
683
684 int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey,
685 int indent, ASN1_PCTX *pctx)
686 {
687 if (pkey->ameth && pkey->ameth->param_print)
688 return pkey->ameth->param_print(out, pkey, indent, pctx);
689 return unsup_alg(out, pkey, indent, "Parameters");
690 }
691
692 static int evp_pkey_asn1_ctrl(EVP_PKEY *pkey, int op, int arg1, void *arg2)
693 {
694 if (pkey->ameth == NULL || pkey->ameth->pkey_ctrl == NULL)
695 return -2;
696 return pkey->ameth->pkey_ctrl(pkey, op, arg1, arg2);
697 }
698
699 int EVP_PKEY_get_default_digest_nid(EVP_PKEY *pkey, int *pnid)
700 {
701 return evp_pkey_asn1_ctrl(pkey, ASN1_PKEY_CTRL_DEFAULT_MD_NID, 0, pnid);
702 }
703
704 int EVP_PKEY_supports_digest_nid(EVP_PKEY *pkey, int nid)
705 {
706 int rv, default_nid;
707
708 rv = evp_pkey_asn1_ctrl(pkey, ASN1_PKEY_CTRL_SUPPORTS_MD_NID, nid, NULL);
709 if (rv == -2) {
710 /*
711 * If there is a mandatory default digest and this isn't it, then
712 * the answer is 'no'.
713 */
714 rv = EVP_PKEY_get_default_digest_nid(pkey, &default_nid);
715 if (rv == 2)
716 return (nid == default_nid);
717 /* zero is an error from EVP_PKEY_get_default_digest_nid() */
718 if (rv == 0)
719 return -1;
720 }
721 return rv;
722 }
723
724 int EVP_PKEY_set1_tls_encodedpoint(EVP_PKEY *pkey,
725 const unsigned char *pt, size_t ptlen)
726 {
727 if (ptlen > INT_MAX)
728 return 0;
729 if (evp_pkey_asn1_ctrl(pkey, ASN1_PKEY_CTRL_SET1_TLS_ENCPT, ptlen,
730 (void *)pt) <= 0)
731 return 0;
732 return 1;
733 }
734
735 size_t EVP_PKEY_get1_tls_encodedpoint(EVP_PKEY *pkey, unsigned char **ppt)
736 {
737 int rv;
738 rv = evp_pkey_asn1_ctrl(pkey, ASN1_PKEY_CTRL_GET1_TLS_ENCPT, 0, ppt);
739 if (rv <= 0)
740 return 0;
741 return rv;
742 }