dba08525a35ab7b64a34c287e5b65e6c8120ca55
[openssl.git] / crypto / evp / p_lib.c
1 /* crypto/evp/p_lib.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
8  * 
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).
15  * 
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.
22  * 
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 :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
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.
52  * 
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>
60 #include "cryptlib.h"
61 #include <openssl/objects.h>
62 #include <openssl/evp.h>
63 #include <openssl/asn1_mac.h>
64 #include <openssl/x509.h>
65
66 static void EVP_PKEY_free_it(EVP_PKEY *x);
67 int EVP_PKEY_bits(EVP_PKEY *pkey)
68         {
69 #ifndef NO_RSA
70         if (pkey->type == EVP_PKEY_RSA)
71                 return(BN_num_bits(pkey->pkey.rsa->n));
72         else
73 #endif
74 #ifndef NO_DSA
75                 if (pkey->type == EVP_PKEY_DSA)
76                 return(BN_num_bits(pkey->pkey.dsa->p));
77 #endif
78         return(0);
79         }
80
81 int EVP_PKEY_size(EVP_PKEY *pkey)
82         {
83         if (pkey == NULL)
84                 return(0);
85 #ifndef NO_RSA
86         if (pkey->type == EVP_PKEY_RSA)
87                 return(RSA_size(pkey->pkey.rsa));
88         else
89 #endif
90 #ifndef NO_DSA
91                 if (pkey->type == EVP_PKEY_DSA)
92                 return(DSA_size(pkey->pkey.dsa));
93 #endif
94         return(0);
95         }
96
97 int EVP_PKEY_save_parameters(EVP_PKEY *pkey, int mode)
98         {
99 #ifndef NO_DSA
100         if (pkey->type == EVP_PKEY_DSA)
101                 {
102                 int ret=pkey->save_parameters=mode;
103
104                 if (mode >= 0)
105                         pkey->save_parameters=mode;
106                 return(ret);
107                 }
108 #endif
109         return(0);
110         }
111
112 int EVP_PKEY_copy_parameters(EVP_PKEY *to, EVP_PKEY *from)
113         {
114         if (to->type != from->type)
115                 {
116                 EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS,EVP_R_DIFFERENT_KEY_TYPES);
117                 goto err;
118                 }
119
120         if (EVP_PKEY_missing_parameters(from))
121                 {
122                 EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS,EVP_R_MISSING_PARMATERS);
123                 goto err;
124                 }
125 #ifndef NO_DSA
126         if (to->type == EVP_PKEY_DSA)
127                 {
128                 BIGNUM *a;
129
130                 if ((a=BN_dup(from->pkey.dsa->p)) == NULL) goto err;
131                 if (to->pkey.dsa->p != NULL) BN_free(to->pkey.dsa->p);
132                 to->pkey.dsa->p=a;
133
134                 if ((a=BN_dup(from->pkey.dsa->q)) == NULL) goto err;
135                 if (to->pkey.dsa->q != NULL) BN_free(to->pkey.dsa->q);
136                 to->pkey.dsa->q=a;
137
138                 if ((a=BN_dup(from->pkey.dsa->g)) == NULL) goto err;
139                 if (to->pkey.dsa->g != NULL) BN_free(to->pkey.dsa->g);
140                 to->pkey.dsa->g=a;
141                 }
142 #endif
143         return(1);
144 err:
145         return(0);
146         }
147
148 int EVP_PKEY_missing_parameters(EVP_PKEY *pkey)
149         {
150 #ifndef NO_DSA
151         if (pkey->type == EVP_PKEY_DSA)
152                 {
153                 DSA *dsa;
154
155                 dsa=pkey->pkey.dsa;
156                 if ((dsa->p == NULL) || (dsa->q == NULL) || (dsa->g == NULL))
157                         return(1);
158                 }
159 #endif
160         return(0);
161         }
162
163 int EVP_PKEY_cmp_parameters(EVP_PKEY *a, EVP_PKEY *b)
164         {
165 #ifndef NO_DSA
166         if ((a->type == EVP_PKEY_DSA) && (b->type == EVP_PKEY_DSA))
167                 {
168                 if (    BN_cmp(a->pkey.dsa->p,b->pkey.dsa->p) ||
169                         BN_cmp(a->pkey.dsa->q,b->pkey.dsa->q) ||
170                         BN_cmp(a->pkey.dsa->g,b->pkey.dsa->g))
171                         return(0);
172                 else
173                         return(1);
174                 }
175 #endif
176         return(-1);
177         }
178
179 EVP_PKEY *EVP_PKEY_new(void)
180         {
181         EVP_PKEY *ret;
182
183         ret=(EVP_PKEY *)Malloc(sizeof(EVP_PKEY));
184         if (ret == NULL)
185                 {
186                 EVPerr(EVP_F_EVP_PKEY_NEW,ERR_R_MALLOC_FAILURE);
187                 return(NULL);
188                 }
189         ret->type=EVP_PKEY_NONE;
190         ret->references=1;
191         ret->pkey.ptr=NULL;
192         ret->attributes=NULL;
193         ret->save_parameters=1;
194         return(ret);
195         }
196
197 int EVP_PKEY_assign(EVP_PKEY *pkey, int type, char *key)
198         {
199         if (pkey == NULL) return(0);
200         if (pkey->pkey.ptr != NULL)
201                 EVP_PKEY_free_it(pkey);
202         pkey->type=EVP_PKEY_type(type);
203         pkey->save_type=type;
204         pkey->pkey.ptr=key;
205         return(1);
206         }
207
208 #ifndef NO_RSA
209 RSA *EVP_PKEY_get_RSA(EVP_PKEY *pkey)
210         {
211         if(pkey->type != EVP_PKEY_RSA) {
212                 EVPerr(EVP_F_EVP_PKEY_GET_RSA, EVP_R_EXPECTING_AN_RSA_KEY);
213                 return NULL;
214         }
215         CRYPTO_add(&pkey->pkey.rsa->references, 1, CRYPTO_LOCK_RSA);
216         return pkey->pkey.rsa;
217 }
218 #endif
219
220 #ifndef NO_DSA
221 DSA *EVP_PKEY_get_DSA(EVP_PKEY *pkey)
222         {
223         if(pkey->type != EVP_PKEY_DSA) {
224                 EVPerr(EVP_F_EVP_PKEY_GET_DSA, EVP_R_EXPECTING_A_DSA_KEY);
225                 return NULL;
226         }
227         CRYPTO_add(&pkey->pkey.rsa->references, 1, CRYPTO_LOCK_DSA);
228         return pkey->pkey.dsa;
229 }
230 #endif
231
232 #ifndef NO_DH
233 DH *EVP_PKEY_get_DH(EVP_PKEY *pkey)
234         {
235         if(pkey->type != EVP_PKEY_DH) {
236                 EVPerr(EVP_F_EVP_PKEY_GET_DH, EVP_R_EXPECTING_A_DH_KEY);
237                 return NULL;
238         }
239         CRYPTO_add(&pkey->pkey.dh->references, 1, CRYPTO_LOCK_DH);
240         return pkey->pkey.dh;
241 }
242 #endif
243
244 int EVP_PKEY_type(int type)
245         {
246         switch (type)
247                 {
248         case EVP_PKEY_RSA:
249         case EVP_PKEY_RSA2:
250                 return(EVP_PKEY_RSA);
251         case EVP_PKEY_DSA:
252         case EVP_PKEY_DSA1:
253         case EVP_PKEY_DSA2:
254         case EVP_PKEY_DSA3:
255         case EVP_PKEY_DSA4:
256                 return(EVP_PKEY_DSA);
257         case EVP_PKEY_DH:
258                 return(EVP_PKEY_DH);
259         default:
260                 return(NID_undef);
261                 }
262         }
263
264 void EVP_PKEY_free(EVP_PKEY *x)
265         {
266         int i;
267
268         if (x == NULL) return;
269
270         i=CRYPTO_add(&x->references,-1,CRYPTO_LOCK_EVP_PKEY);
271 #ifdef REF_PRINT
272         REF_PRINT("EVP_PKEY",x);
273 #endif
274         if (i > 0) return;
275 #ifdef REF_CHECK
276         if (i < 0)
277                 {
278                 fprintf(stderr,"EVP_PKEY_free, bad reference count\n");
279                 abort();
280                 }
281 #endif
282         EVP_PKEY_free_it(x);
283         Free((char *)x);
284         }
285
286 static void EVP_PKEY_free_it(EVP_PKEY *x)
287         {
288         switch (x->type)
289                 {
290 #ifndef NO_RSA
291         case EVP_PKEY_RSA:
292         case EVP_PKEY_RSA2:
293                 RSA_free(x->pkey.rsa);
294                 break;
295 #endif
296 #ifndef NO_DSA
297         case EVP_PKEY_DSA:
298         case EVP_PKEY_DSA2:
299         case EVP_PKEY_DSA3:
300         case EVP_PKEY_DSA4:
301                 DSA_free(x->pkey.dsa);
302                 break;
303 #endif
304 #ifndef NO_DH
305         case EVP_PKEY_DH:
306                 DH_free(x->pkey.dh);
307                 break;
308 #endif
309                 }
310         }
311