]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/p_lib.c
Remove the GOST engine
[thirdparty/openssl.git] / crypto / evp / p_lib.c
CommitLineData
d02b48c6 1/* crypto/evp/p_lib.c */
58964a49 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
0f113f3e 8 *
d02b48c6
RE
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
0f113f3e 15 *
d02b48c6
RE
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
0f113f3e 22 *
d02b48c6
RE
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
0f113f3e 37 * 4. If you include any Windows specific code (or a derivative thereof) from
d02b48c6
RE
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 40 *
d02b48c6
RE
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
0f113f3e 52 *
d02b48c6
RE
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58
59#include <stdio.h>
b39fc560 60#include "internal/cryptlib.h"
4d94ae00
BM
61#include <openssl/bn.h>
62#include <openssl/err.h>
ec577822
BM
63#include <openssl/objects.h>
64#include <openssl/evp.h>
ec577822 65#include <openssl/x509.h>
3eeaab4b 66#ifndef OPENSSL_NO_RSA
0f113f3e 67# include <openssl/rsa.h>
3eeaab4b
NL
68#endif
69#ifndef OPENSSL_NO_DSA
0f113f3e 70# include <openssl/dsa.h>
3eeaab4b
NL
71#endif
72#ifndef OPENSSL_NO_DH
0f113f3e 73# include <openssl/dh.h>
3eeaab4b 74#endif
d02b48c6 75
01b8b3c7 76#ifndef OPENSSL_NO_ENGINE
0f113f3e 77# include <openssl/engine.h>
01b8b3c7
DSH
78#endif
79
5fe736e5 80#include "internal/asn1_int.h"
18e377b4 81
d02b48c6 82static void EVP_PKEY_free_it(EVP_PKEY *x);
bb2297a4 83
6b691a5c 84int EVP_PKEY_bits(EVP_PKEY *pkey)
0f113f3e
MC
85{
86 if (pkey && pkey->ameth && pkey->ameth->pkey_bits)
87 return pkey->ameth->pkey_bits(pkey);
88 return 0;
89}
58964a49 90
2514fa79 91int EVP_PKEY_security_bits(const EVP_PKEY *pkey)
0f113f3e
MC
92{
93 if (pkey == NULL)
94 return 0;
95 if (!pkey->ameth || !pkey->ameth->pkey_security_bits)
96 return -2;
97 return pkey->ameth->pkey_security_bits(pkey);
98}
2514fa79 99
6b691a5c 100int EVP_PKEY_size(EVP_PKEY *pkey)
0f113f3e
MC
101{
102 if (pkey && pkey->ameth && pkey->ameth->pkey_size)
103 return pkey->ameth->pkey_size(pkey);
104 return 0;
105}
d02b48c6 106
6b691a5c 107int EVP_PKEY_save_parameters(EVP_PKEY *pkey, int mode)
0f113f3e 108{
cf1b7d96 109#ifndef OPENSSL_NO_DSA
0f113f3e
MC
110 if (pkey->type == EVP_PKEY_DSA) {
111 int ret = pkey->save_parameters;
112
113 if (mode >= 0)
114 pkey->save_parameters = mode;
115 return (ret);
116 }
4d94ae00 117#endif
5488bb61 118#ifndef OPENSSL_NO_EC
0f113f3e
MC
119 if (pkey->type == EVP_PKEY_EC) {
120 int ret = pkey->save_parameters;
121
122 if (mode >= 0)
123 pkey->save_parameters = mode;
124 return (ret);
125 }
d02b48c6 126#endif
0f113f3e
MC
127 return (0);
128}
d02b48c6 129
a8b72844 130int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
0f113f3e 131{
2986ecdc
DSH
132 if (to->type == EVP_PKEY_NONE) {
133 if (EVP_PKEY_set_type(to, from->type) == 0)
134 return 0;
135 } else if (to->type != from->type) {
0f113f3e
MC
136 EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS, EVP_R_DIFFERENT_KEY_TYPES);
137 goto err;
138 }
139
140 if (EVP_PKEY_missing_parameters(from)) {
141 EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS, EVP_R_MISSING_PARAMETERS);
142 goto err;
143 }
144 if (from->ameth && from->ameth->param_copy)
145 return from->ameth->param_copy(to, from);
146 err:
147 return 0;
148}
d02b48c6 149
af0f0f3e 150int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey)
0f113f3e
MC
151{
152 if (pkey->ameth && pkey->ameth->param_missing)
153 return pkey->ameth->param_missing(pkey);
154 return 0;
155}
d02b48c6 156
af0f0f3e 157int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
0f113f3e
MC
158{
159 if (a->type != b->type)
160 return -1;
161 if (a->ameth && a->ameth->param_cmp)
162 return a->ameth->param_cmp(a, b);
163 return -2;
164}
58964a49 165
af0f0f3e 166int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
0f113f3e
MC
167{
168 if (a->type != b->type)
169 return -1;
170
171 if (a->ameth) {
172 int ret;
173 /* Compare parameters if the algorithm has them */
174 if (a->ameth->param_cmp) {
175 ret = a->ameth->param_cmp(a, b);
176 if (ret <= 0)
177 return ret;
178 }
179
180 if (a->ameth->pub_cmp)
181 return a->ameth->pub_cmp(a, b);
182 }
183
184 return -2;
185}
e6526fbf 186
6b691a5c 187EVP_PKEY *EVP_PKEY_new(void)
0f113f3e
MC
188{
189 EVP_PKEY *ret;
190
b4faea50 191 ret = OPENSSL_malloc(sizeof(*ret));
0f113f3e
MC
192 if (ret == NULL) {
193 EVPerr(EVP_F_EVP_PKEY_NEW, ERR_R_MALLOC_FAILURE);
194 return (NULL);
195 }
196 ret->type = EVP_PKEY_NONE;
197 ret->save_type = EVP_PKEY_NONE;
198 ret->references = 1;
199 ret->ameth = NULL;
200 ret->engine = NULL;
201 ret->pkey.ptr = NULL;
202 ret->attributes = NULL;
203 ret->save_parameters = 1;
204 return (ret);
205}
206
2872dbe1
DSH
207void EVP_PKEY_up_ref(EVP_PKEY *pkey)
208{
209 CRYPTO_add(&pkey->references, 1, CRYPTO_LOCK_EVP_PKEY);
210}
211
0f113f3e
MC
212/*
213 * Setup a public key ASN1 method and ENGINE from a NID or a string. If pkey
214 * is NULL just return 1 or 0 if the algorithm exists.
01b8b3c7
DSH
215 */
216
217static int pkey_set_type(EVP_PKEY *pkey, int type, const char *str, int len)
0f113f3e
MC
218{
219 const EVP_PKEY_ASN1_METHOD *ameth;
220 ENGINE *e = NULL;
221 if (pkey) {
222 if (pkey->pkey.ptr)
223 EVP_PKEY_free_it(pkey);
224 /*
225 * If key type matches and a method exists then this lookup has
226 * succeeded once so just indicate success.
227 */
228 if ((type == pkey->save_type) && pkey->ameth)
229 return 1;
01b8b3c7 230#ifndef OPENSSL_NO_ENGINE
0f113f3e
MC
231 /* If we have an ENGINE release it */
232 if (pkey->engine) {
233 ENGINE_finish(pkey->engine);
234 pkey->engine = NULL;
235 }
01b8b3c7 236#endif
0f113f3e
MC
237 }
238 if (str)
239 ameth = EVP_PKEY_asn1_find_str(&e, str, len);
240 else
241 ameth = EVP_PKEY_asn1_find(&e, type);
01b8b3c7 242#ifndef OPENSSL_NO_ENGINE
0f113f3e
MC
243 if (!pkey && e)
244 ENGINE_finish(e);
01b8b3c7 245#endif
0f113f3e
MC
246 if (!ameth) {
247 EVPerr(EVP_F_PKEY_SET_TYPE, EVP_R_UNSUPPORTED_ALGORITHM);
248 return 0;
249 }
250 if (pkey) {
251 pkey->ameth = ameth;
252 pkey->engine = e;
253
254 pkey->type = pkey->ameth->pkey_id;
255 pkey->save_type = type;
256 }
257 return 1;
258}
01b8b3c7
DSH
259
260int EVP_PKEY_set_type(EVP_PKEY *pkey, int type)
0f113f3e
MC
261{
262 return pkey_set_type(pkey, type, NULL, -1);
263}
01b8b3c7
DSH
264
265int EVP_PKEY_set_type_str(EVP_PKEY *pkey, const char *str, int len)
0f113f3e
MC
266{
267 return pkey_set_type(pkey, EVP_PKEY_NONE, str, len);
268}
01b8b3c7
DSH
269
270int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key)
0f113f3e 271{
e34c66c6 272 if (pkey == NULL || !EVP_PKEY_set_type(pkey, type))
0f113f3e
MC
273 return 0;
274 pkey->pkey.ptr = key;
275 return (key != NULL);
276}
d02b48c6 277
db98bbc1 278void *EVP_PKEY_get0(EVP_PKEY *pkey)
0f113f3e
MC
279{
280 return pkey->pkey.ptr;
281}
db98bbc1 282
cf1b7d96 283#ifndef OPENSSL_NO_RSA
c7cb16a8 284int EVP_PKEY_set1_RSA(EVP_PKEY *pkey, RSA *key)
52664f50 285{
0f113f3e
MC
286 int ret = EVP_PKEY_assign_RSA(pkey, key);
287 if (ret)
288 RSA_up_ref(key);
289 return ret;
52664f50
DSH
290}
291
2872dbe1 292RSA *EVP_PKEY_get0_RSA(EVP_PKEY *pkey)
0f113f3e
MC
293{
294 if (pkey->type != EVP_PKEY_RSA) {
2872dbe1 295 EVPerr(EVP_F_EVP_PKEY_GET0_RSA, EVP_R_EXPECTING_AN_RSA_KEY);
0f113f3e
MC
296 return NULL;
297 }
0f113f3e 298 return pkey->pkey.rsa;
f769ce3e 299}
2872dbe1
DSH
300
301RSA *EVP_PKEY_get1_RSA(EVP_PKEY *pkey)
302{
303 RSA *ret = EVP_PKEY_get0_RSA(pkey);
304 if (ret != NULL)
305 RSA_up_ref(ret);
306 return ret;
307}
f769ce3e
DSH
308#endif
309
cf1b7d96 310#ifndef OPENSSL_NO_DSA
c7cb16a8 311int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, DSA *key)
52664f50 312{
0f113f3e
MC
313 int ret = EVP_PKEY_assign_DSA(pkey, key);
314 if (ret)
315 DSA_up_ref(key);
316 return ret;
52664f50
DSH
317}
318
2872dbe1 319DSA *EVP_PKEY_get0_DSA(EVP_PKEY *pkey)
0f113f3e
MC
320{
321 if (pkey->type != EVP_PKEY_DSA) {
2872dbe1 322 EVPerr(EVP_F_EVP_PKEY_GET0_DSA, EVP_R_EXPECTING_A_DSA_KEY);
0f113f3e
MC
323 return NULL;
324 }
0f113f3e 325 return pkey->pkey.dsa;
f769ce3e 326}
2872dbe1
DSH
327
328DSA *EVP_PKEY_get1_DSA(EVP_PKEY *pkey)
329{
330 DSA *ret = EVP_PKEY_get0_DSA(pkey);
331 if (ret != NULL)
332 DSA_up_ref(ret);
333 return ret;
334}
f769ce3e
DSH
335#endif
336
14a7cfb3 337#ifndef OPENSSL_NO_EC
4d94ae00 338
14a7cfb3 339int EVP_PKEY_set1_EC_KEY(EVP_PKEY *pkey, EC_KEY *key)
4d94ae00 340{
0f113f3e
MC
341 int ret = EVP_PKEY_assign_EC_KEY(pkey, key);
342 if (ret)
343 EC_KEY_up_ref(key);
344 return ret;
4d94ae00
BM
345}
346
2872dbe1 347EC_KEY *EVP_PKEY_get0_EC_KEY(EVP_PKEY *pkey)
4d94ae00 348{
0f113f3e 349 if (pkey->type != EVP_PKEY_EC) {
2872dbe1 350 EVPerr(EVP_F_EVP_PKEY_GET0_EC_KEY, EVP_R_EXPECTING_A_EC_KEY);
0f113f3e
MC
351 return NULL;
352 }
0f113f3e 353 return pkey->pkey.ec;
4d94ae00 354}
2872dbe1
DSH
355
356EC_KEY *EVP_PKEY_get1_EC_KEY(EVP_PKEY *pkey)
357{
358 EC_KEY *ret = EVP_PKEY_get0_EC_KEY(pkey);
359 if (ret != NULL)
360 EC_KEY_up_ref(ret);
361 return ret;
362}
4d94ae00
BM
363#endif
364
cf1b7d96 365#ifndef OPENSSL_NO_DH
52664f50 366
c7cb16a8 367int EVP_PKEY_set1_DH(EVP_PKEY *pkey, DH *key)
52664f50 368{
0f113f3e
MC
369 int ret = EVP_PKEY_assign_DH(pkey, key);
370 if (ret)
371 DH_up_ref(key);
372 return ret;
52664f50
DSH
373}
374
2872dbe1 375DH *EVP_PKEY_get0_DH(EVP_PKEY *pkey)
0f113f3e
MC
376{
377 if (pkey->type != EVP_PKEY_DH && pkey->type != EVP_PKEY_DHX) {
2872dbe1 378 EVPerr(EVP_F_EVP_PKEY_GET0_DH, EVP_R_EXPECTING_A_DH_KEY);
0f113f3e
MC
379 return NULL;
380 }
0f113f3e 381 return pkey->pkey.dh;
f769ce3e 382}
2872dbe1
DSH
383
384DH *EVP_PKEY_get1_DH(EVP_PKEY *pkey)
385{
386 DH *ret = EVP_PKEY_get0_DH(pkey);
387 if (ret != NULL)
388 DH_up_ref(ret);
389 return ret;
390}
f769ce3e
DSH
391#endif
392
6b691a5c 393int EVP_PKEY_type(int type)
0f113f3e
MC
394{
395 int ret;
396 const EVP_PKEY_ASN1_METHOD *ameth;
397 ENGINE *e;
398 ameth = EVP_PKEY_asn1_find(&e, type);
399 if (ameth)
400 ret = ameth->pkey_id;
401 else
402 ret = NID_undef;
01b8b3c7 403#ifndef OPENSSL_NO_ENGINE
0f113f3e
MC
404 if (e)
405 ENGINE_finish(e);
01b8b3c7 406#endif
0f113f3e
MC
407 return ret;
408}
d02b48c6 409
7f57b076 410int EVP_PKEY_id(const EVP_PKEY *pkey)
0f113f3e
MC
411{
412 return pkey->type;
413}
7f57b076
DSH
414
415int EVP_PKEY_base_id(const EVP_PKEY *pkey)
0f113f3e
MC
416{
417 return EVP_PKEY_type(pkey->type);
418}
7f57b076 419
6b691a5c 420void EVP_PKEY_free(EVP_PKEY *x)
0f113f3e
MC
421{
422 int i;
d02b48c6 423
0f113f3e
MC
424 if (x == NULL)
425 return;
d02b48c6 426
0f113f3e 427 i = CRYPTO_add(&x->references, -1, CRYPTO_LOCK_EVP_PKEY);
58964a49 428#ifdef REF_PRINT
0f113f3e 429 REF_PRINT("EVP_PKEY", x);
58964a49 430#endif
0f113f3e
MC
431 if (i > 0)
432 return;
d02b48c6 433#ifdef REF_CHECK
0f113f3e
MC
434 if (i < 0) {
435 fprintf(stderr, "EVP_PKEY_free, bad reference count\n");
436 abort();
437 }
d02b48c6 438#endif
0f113f3e 439 EVP_PKEY_free_it(x);
222561fe 440 sk_X509_ATTRIBUTE_pop_free(x->attributes, X509_ATTRIBUTE_free);
0f113f3e
MC
441 OPENSSL_free(x);
442}
d02b48c6 443
6b691a5c 444static void EVP_PKEY_free_it(EVP_PKEY *x)
0f113f3e 445{
c5ba2d99 446 /* internal function; x is never NULL */
0f113f3e
MC
447 if (x->ameth && x->ameth->pkey_free) {
448 x->ameth->pkey_free(x);
449 x->pkey.ptr = NULL;
450 }
01b8b3c7 451#ifndef OPENSSL_NO_ENGINE
0f113f3e
MC
452 if (x->engine) {
453 ENGINE_finish(x->engine);
454 x->engine = NULL;
455 }
01b8b3c7 456#endif
0f113f3e 457}
d02b48c6 458
35208f36 459static int unsup_alg(BIO *out, const EVP_PKEY *pkey, int indent,
0f113f3e
MC
460 const char *kstr)
461{
462 BIO_indent(out, indent, 128);
463 BIO_printf(out, "%s algorithm \"%s\" unsupported\n",
464 kstr, OBJ_nid2ln(pkey->type));
465 return 1;
466}
35208f36
DSH
467
468int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey,
0f113f3e
MC
469 int indent, ASN1_PCTX *pctx)
470{
471 if (pkey->ameth && pkey->ameth->pub_print)
472 return pkey->ameth->pub_print(out, pkey, indent, pctx);
473
474 return unsup_alg(out, pkey, indent, "Public Key");
475}
35208f36
DSH
476
477int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey,
0f113f3e
MC
478 int indent, ASN1_PCTX *pctx)
479{
480 if (pkey->ameth && pkey->ameth->priv_print)
481 return pkey->ameth->priv_print(out, pkey, indent, pctx);
482
483 return unsup_alg(out, pkey, indent, "Private Key");
484}
35208f36
DSH
485
486int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey,
0f113f3e
MC
487 int indent, ASN1_PCTX *pctx)
488{
489 if (pkey->ameth && pkey->ameth->param_print)
490 return pkey->ameth->param_print(out, pkey, indent, pctx);
491 return unsup_alg(out, pkey, indent, "Parameters");
492}
03919683
DSH
493
494int EVP_PKEY_get_default_digest_nid(EVP_PKEY *pkey, int *pnid)
0f113f3e
MC
495{
496 if (!pkey->ameth || !pkey->ameth->pkey_ctrl)
497 return -2;
498 return pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_DEFAULT_MD_NID,
499 0, pnid);
500}