]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/p_lib.c
Fix a ** 0 mod 1 = 0 for real this time.
[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
MC
131{
132 if (to->type != from->type) {
133 EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS, EVP_R_DIFFERENT_KEY_TYPES);
134 goto err;
135 }
136
137 if (EVP_PKEY_missing_parameters(from)) {
138 EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS, EVP_R_MISSING_PARAMETERS);
139 goto err;
140 }
141 if (from->ameth && from->ameth->param_copy)
142 return from->ameth->param_copy(to, from);
143 err:
144 return 0;
145}
d02b48c6 146
af0f0f3e 147int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey)
0f113f3e
MC
148{
149 if (pkey->ameth && pkey->ameth->param_missing)
150 return pkey->ameth->param_missing(pkey);
151 return 0;
152}
d02b48c6 153
af0f0f3e 154int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
0f113f3e
MC
155{
156 if (a->type != b->type)
157 return -1;
158 if (a->ameth && a->ameth->param_cmp)
159 return a->ameth->param_cmp(a, b);
160 return -2;
161}
58964a49 162
af0f0f3e 163int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
0f113f3e
MC
164{
165 if (a->type != b->type)
166 return -1;
167
168 if (a->ameth) {
169 int ret;
170 /* Compare parameters if the algorithm has them */
171 if (a->ameth->param_cmp) {
172 ret = a->ameth->param_cmp(a, b);
173 if (ret <= 0)
174 return ret;
175 }
176
177 if (a->ameth->pub_cmp)
178 return a->ameth->pub_cmp(a, b);
179 }
180
181 return -2;
182}
e6526fbf 183
6b691a5c 184EVP_PKEY *EVP_PKEY_new(void)
0f113f3e
MC
185{
186 EVP_PKEY *ret;
187
b4faea50 188 ret = OPENSSL_malloc(sizeof(*ret));
0f113f3e
MC
189 if (ret == NULL) {
190 EVPerr(EVP_F_EVP_PKEY_NEW, ERR_R_MALLOC_FAILURE);
191 return (NULL);
192 }
193 ret->type = EVP_PKEY_NONE;
194 ret->save_type = EVP_PKEY_NONE;
195 ret->references = 1;
196 ret->ameth = NULL;
197 ret->engine = NULL;
198 ret->pkey.ptr = NULL;
199 ret->attributes = NULL;
200 ret->save_parameters = 1;
201 return (ret);
202}
203
204/*
205 * Setup a public key ASN1 method and ENGINE from a NID or a string. If pkey
206 * is NULL just return 1 or 0 if the algorithm exists.
01b8b3c7
DSH
207 */
208
209static int pkey_set_type(EVP_PKEY *pkey, int type, const char *str, int len)
0f113f3e
MC
210{
211 const EVP_PKEY_ASN1_METHOD *ameth;
212 ENGINE *e = NULL;
213 if (pkey) {
214 if (pkey->pkey.ptr)
215 EVP_PKEY_free_it(pkey);
216 /*
217 * If key type matches and a method exists then this lookup has
218 * succeeded once so just indicate success.
219 */
220 if ((type == pkey->save_type) && pkey->ameth)
221 return 1;
01b8b3c7 222#ifndef OPENSSL_NO_ENGINE
0f113f3e
MC
223 /* If we have an ENGINE release it */
224 if (pkey->engine) {
225 ENGINE_finish(pkey->engine);
226 pkey->engine = NULL;
227 }
01b8b3c7 228#endif
0f113f3e
MC
229 }
230 if (str)
231 ameth = EVP_PKEY_asn1_find_str(&e, str, len);
232 else
233 ameth = EVP_PKEY_asn1_find(&e, type);
01b8b3c7 234#ifndef OPENSSL_NO_ENGINE
0f113f3e
MC
235 if (!pkey && e)
236 ENGINE_finish(e);
01b8b3c7 237#endif
0f113f3e
MC
238 if (!ameth) {
239 EVPerr(EVP_F_PKEY_SET_TYPE, EVP_R_UNSUPPORTED_ALGORITHM);
240 return 0;
241 }
242 if (pkey) {
243 pkey->ameth = ameth;
244 pkey->engine = e;
245
246 pkey->type = pkey->ameth->pkey_id;
247 pkey->save_type = type;
248 }
249 return 1;
250}
01b8b3c7
DSH
251
252int EVP_PKEY_set_type(EVP_PKEY *pkey, int type)
0f113f3e
MC
253{
254 return pkey_set_type(pkey, type, NULL, -1);
255}
01b8b3c7
DSH
256
257int EVP_PKEY_set_type_str(EVP_PKEY *pkey, const char *str, int len)
0f113f3e
MC
258{
259 return pkey_set_type(pkey, EVP_PKEY_NONE, str, len);
260}
01b8b3c7
DSH
261
262int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key)
0f113f3e 263{
e34c66c6 264 if (pkey == NULL || !EVP_PKEY_set_type(pkey, type))
0f113f3e
MC
265 return 0;
266 pkey->pkey.ptr = key;
267 return (key != NULL);
268}
d02b48c6 269
db98bbc1 270void *EVP_PKEY_get0(EVP_PKEY *pkey)
0f113f3e
MC
271{
272 return pkey->pkey.ptr;
273}
db98bbc1 274
cf1b7d96 275#ifndef OPENSSL_NO_RSA
c7cb16a8 276int EVP_PKEY_set1_RSA(EVP_PKEY *pkey, RSA *key)
52664f50 277{
0f113f3e
MC
278 int ret = EVP_PKEY_assign_RSA(pkey, key);
279 if (ret)
280 RSA_up_ref(key);
281 return ret;
52664f50
DSH
282}
283
c7cb16a8 284RSA *EVP_PKEY_get1_RSA(EVP_PKEY *pkey)
0f113f3e
MC
285{
286 if (pkey->type != EVP_PKEY_RSA) {
287 EVPerr(EVP_F_EVP_PKEY_GET1_RSA, EVP_R_EXPECTING_AN_RSA_KEY);
288 return NULL;
289 }
290 RSA_up_ref(pkey->pkey.rsa);
291 return pkey->pkey.rsa;
f769ce3e
DSH
292}
293#endif
294
cf1b7d96 295#ifndef OPENSSL_NO_DSA
c7cb16a8 296int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, DSA *key)
52664f50 297{
0f113f3e
MC
298 int ret = EVP_PKEY_assign_DSA(pkey, key);
299 if (ret)
300 DSA_up_ref(key);
301 return ret;
52664f50
DSH
302}
303
c7cb16a8 304DSA *EVP_PKEY_get1_DSA(EVP_PKEY *pkey)
0f113f3e
MC
305{
306 if (pkey->type != EVP_PKEY_DSA) {
307 EVPerr(EVP_F_EVP_PKEY_GET1_DSA, EVP_R_EXPECTING_A_DSA_KEY);
308 return NULL;
309 }
310 DSA_up_ref(pkey->pkey.dsa);
311 return pkey->pkey.dsa;
f769ce3e
DSH
312}
313#endif
314
14a7cfb3 315#ifndef OPENSSL_NO_EC
4d94ae00 316
14a7cfb3 317int EVP_PKEY_set1_EC_KEY(EVP_PKEY *pkey, EC_KEY *key)
4d94ae00 318{
0f113f3e
MC
319 int ret = EVP_PKEY_assign_EC_KEY(pkey, key);
320 if (ret)
321 EC_KEY_up_ref(key);
322 return ret;
4d94ae00
BM
323}
324
14a7cfb3 325EC_KEY *EVP_PKEY_get1_EC_KEY(EVP_PKEY *pkey)
4d94ae00 326{
0f113f3e
MC
327 if (pkey->type != EVP_PKEY_EC) {
328 EVPerr(EVP_F_EVP_PKEY_GET1_EC_KEY, EVP_R_EXPECTING_A_EC_KEY);
329 return NULL;
330 }
331 EC_KEY_up_ref(pkey->pkey.ec);
332 return pkey->pkey.ec;
4d94ae00
BM
333}
334#endif
335
cf1b7d96 336#ifndef OPENSSL_NO_DH
52664f50 337
c7cb16a8 338int EVP_PKEY_set1_DH(EVP_PKEY *pkey, DH *key)
52664f50 339{
0f113f3e
MC
340 int ret = EVP_PKEY_assign_DH(pkey, key);
341 if (ret)
342 DH_up_ref(key);
343 return ret;
52664f50
DSH
344}
345
c7cb16a8 346DH *EVP_PKEY_get1_DH(EVP_PKEY *pkey)
0f113f3e
MC
347{
348 if (pkey->type != EVP_PKEY_DH && pkey->type != EVP_PKEY_DHX) {
349 EVPerr(EVP_F_EVP_PKEY_GET1_DH, EVP_R_EXPECTING_A_DH_KEY);
350 return NULL;
351 }
352 DH_up_ref(pkey->pkey.dh);
353 return pkey->pkey.dh;
f769ce3e
DSH
354}
355#endif
356
6b691a5c 357int EVP_PKEY_type(int type)
0f113f3e
MC
358{
359 int ret;
360 const EVP_PKEY_ASN1_METHOD *ameth;
361 ENGINE *e;
362 ameth = EVP_PKEY_asn1_find(&e, type);
363 if (ameth)
364 ret = ameth->pkey_id;
365 else
366 ret = NID_undef;
01b8b3c7 367#ifndef OPENSSL_NO_ENGINE
0f113f3e
MC
368 if (e)
369 ENGINE_finish(e);
01b8b3c7 370#endif
0f113f3e
MC
371 return ret;
372}
d02b48c6 373
7f57b076 374int EVP_PKEY_id(const EVP_PKEY *pkey)
0f113f3e
MC
375{
376 return pkey->type;
377}
7f57b076
DSH
378
379int EVP_PKEY_base_id(const EVP_PKEY *pkey)
0f113f3e
MC
380{
381 return EVP_PKEY_type(pkey->type);
382}
7f57b076 383
6b691a5c 384void EVP_PKEY_free(EVP_PKEY *x)
0f113f3e
MC
385{
386 int i;
d02b48c6 387
0f113f3e
MC
388 if (x == NULL)
389 return;
d02b48c6 390
0f113f3e 391 i = CRYPTO_add(&x->references, -1, CRYPTO_LOCK_EVP_PKEY);
58964a49 392#ifdef REF_PRINT
0f113f3e 393 REF_PRINT("EVP_PKEY", x);
58964a49 394#endif
0f113f3e
MC
395 if (i > 0)
396 return;
d02b48c6 397#ifdef REF_CHECK
0f113f3e
MC
398 if (i < 0) {
399 fprintf(stderr, "EVP_PKEY_free, bad reference count\n");
400 abort();
401 }
d02b48c6 402#endif
0f113f3e 403 EVP_PKEY_free_it(x);
222561fe 404 sk_X509_ATTRIBUTE_pop_free(x->attributes, X509_ATTRIBUTE_free);
0f113f3e
MC
405 OPENSSL_free(x);
406}
d02b48c6 407
6b691a5c 408static void EVP_PKEY_free_it(EVP_PKEY *x)
0f113f3e 409{
c5ba2d99 410 /* internal function; x is never NULL */
0f113f3e
MC
411 if (x->ameth && x->ameth->pkey_free) {
412 x->ameth->pkey_free(x);
413 x->pkey.ptr = NULL;
414 }
01b8b3c7 415#ifndef OPENSSL_NO_ENGINE
0f113f3e
MC
416 if (x->engine) {
417 ENGINE_finish(x->engine);
418 x->engine = NULL;
419 }
01b8b3c7 420#endif
0f113f3e 421}
d02b48c6 422
35208f36 423static int unsup_alg(BIO *out, const EVP_PKEY *pkey, int indent,
0f113f3e
MC
424 const char *kstr)
425{
426 BIO_indent(out, indent, 128);
427 BIO_printf(out, "%s algorithm \"%s\" unsupported\n",
428 kstr, OBJ_nid2ln(pkey->type));
429 return 1;
430}
35208f36
DSH
431
432int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey,
0f113f3e
MC
433 int indent, ASN1_PCTX *pctx)
434{
435 if (pkey->ameth && pkey->ameth->pub_print)
436 return pkey->ameth->pub_print(out, pkey, indent, pctx);
437
438 return unsup_alg(out, pkey, indent, "Public Key");
439}
35208f36
DSH
440
441int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey,
0f113f3e
MC
442 int indent, ASN1_PCTX *pctx)
443{
444 if (pkey->ameth && pkey->ameth->priv_print)
445 return pkey->ameth->priv_print(out, pkey, indent, pctx);
446
447 return unsup_alg(out, pkey, indent, "Private Key");
448}
35208f36
DSH
449
450int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey,
0f113f3e
MC
451 int indent, ASN1_PCTX *pctx)
452{
453 if (pkey->ameth && pkey->ameth->param_print)
454 return pkey->ameth->param_print(out, pkey, indent, pctx);
455 return unsup_alg(out, pkey, indent, "Parameters");
456}
03919683
DSH
457
458int EVP_PKEY_get_default_digest_nid(EVP_PKEY *pkey, int *pnid)
0f113f3e
MC
459{
460 if (!pkey->ameth || !pkey->ameth->pkey_ctrl)
461 return -2;
462 return pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_DEFAULT_MD_NID,
463 0, pnid);
464}