Seek out and destroy another evil cast.
[openssl.git] / crypto / asn1 / x_pubkey.c
1 /* crypto/asn1/x_pubkey.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/asn1_mac.h>
62 #include <openssl/x509.h>
63
64 int i2d_X509_PUBKEY(X509_PUBKEY *a, unsigned char **pp)
65         {
66         M_ASN1_I2D_vars(a);
67
68         M_ASN1_I2D_len(a->algor,        i2d_X509_ALGOR);
69         M_ASN1_I2D_len(a->public_key,   i2d_ASN1_BIT_STRING);
70
71         M_ASN1_I2D_seq_total();
72
73         M_ASN1_I2D_put(a->algor,        i2d_X509_ALGOR);
74         M_ASN1_I2D_put(a->public_key,   i2d_ASN1_BIT_STRING);
75
76         M_ASN1_I2D_finish();
77         }
78
79 X509_PUBKEY *d2i_X509_PUBKEY(X509_PUBKEY **a, unsigned char **pp,
80              long length)
81         {
82         M_ASN1_D2I_vars(a,X509_PUBKEY *,X509_PUBKEY_new);
83
84         M_ASN1_D2I_Init();
85         M_ASN1_D2I_start_sequence();
86         M_ASN1_D2I_get(ret->algor,d2i_X509_ALGOR);
87         M_ASN1_D2I_get(ret->public_key,d2i_ASN1_BIT_STRING);
88         if (ret->pkey != NULL)
89                 {
90                 EVP_PKEY_free(ret->pkey);
91                 ret->pkey=NULL;
92                 }
93         M_ASN1_D2I_Finish(a,X509_PUBKEY_free,ASN1_F_D2I_X509_PUBKEY);
94         }
95
96 X509_PUBKEY *X509_PUBKEY_new(void)
97         {
98         X509_PUBKEY *ret=NULL;
99         ASN1_CTX c;
100
101         M_ASN1_New_Malloc(ret,X509_PUBKEY);
102         M_ASN1_New(ret->algor,X509_ALGOR_new);
103         M_ASN1_New(ret->public_key,M_ASN1_BIT_STRING_new);
104         ret->pkey=NULL;
105         return(ret);
106         M_ASN1_New_Error(ASN1_F_X509_PUBKEY_NEW);
107         }
108
109 void X509_PUBKEY_free(X509_PUBKEY *a)
110         {
111         if (a == NULL) return;
112         X509_ALGOR_free(a->algor);
113         M_ASN1_BIT_STRING_free(a->public_key);
114         if (a->pkey != NULL) EVP_PKEY_free(a->pkey);
115         Free(a);
116         }
117
118 int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey)
119         {
120         int ok=0;
121         X509_PUBKEY *pk;
122         X509_ALGOR *a;
123         ASN1_OBJECT *o;
124         unsigned char *s,*p;
125         int i;
126
127         if (x == NULL) return(0);
128
129         if ((pk=X509_PUBKEY_new()) == NULL) goto err;
130         a=pk->algor;
131
132         /* set the algorithm id */
133         if ((o=OBJ_nid2obj(pkey->type)) == NULL) goto err;
134         ASN1_OBJECT_free(a->algorithm);
135         a->algorithm=o;
136
137         /* Set the parameter list */
138         if (!pkey->save_parameters || (pkey->type == EVP_PKEY_RSA))
139                 {
140                 if ((a->parameter == NULL) ||
141                         (a->parameter->type != V_ASN1_NULL))
142                         {
143                         ASN1_TYPE_free(a->parameter);
144                         a->parameter=ASN1_TYPE_new();
145                         a->parameter->type=V_ASN1_NULL;
146                         }
147                 }
148         else
149 #ifndef NO_DSA
150                 if (pkey->type == EVP_PKEY_DSA)
151                 {
152                 unsigned char *pp;
153                 DSA *dsa;
154
155                 dsa=pkey->pkey.dsa;
156                 dsa->write_params=0;
157                 ASN1_TYPE_free(a->parameter);
158                 i=i2d_DSAparams(dsa,NULL);
159                 p=(unsigned char *)Malloc(i);
160                 pp=p;
161                 i2d_DSAparams(dsa,&pp);
162                 a->parameter=ASN1_TYPE_new();
163                 a->parameter->type=V_ASN1_SEQUENCE;
164                 a->parameter->value.sequence=ASN1_STRING_new();
165                 ASN1_STRING_set(a->parameter->value.sequence,p,i);
166                 Free(p);
167                 }
168         else
169 #endif
170                 {
171                 X509err(X509_F_X509_PUBKEY_SET,X509_R_UNSUPPORTED_ALGORITHM);
172                 goto err;
173                 }
174
175         if ((i=i2d_PublicKey(pkey,NULL)) <= 0) goto err;
176         if ((s=(unsigned char *)Malloc(i+1)) == NULL) goto err;
177         p=s;
178         i2d_PublicKey(pkey,&p);
179         if (!M_ASN1_BIT_STRING_set(pk->public_key,s,i)) goto err;
180         /* Set number of unused bits to zero */
181         pk->public_key->flags&= ~(ASN1_STRING_FLAG_BITS_LEFT|0x07);
182         pk->public_key->flags|=ASN1_STRING_FLAG_BITS_LEFT;
183
184         Free(s);
185
186         CRYPTO_add(&pkey->references,1,CRYPTO_LOCK_EVP_PKEY);
187         pk->pkey=pkey;
188
189         if (*x != NULL)
190                 X509_PUBKEY_free(*x);
191
192         *x=pk;
193         pk=NULL;
194
195         ok=1;
196 err:
197         if (pk != NULL) X509_PUBKEY_free(pk);
198         return(ok);
199         }
200
201 EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key)
202         {
203         EVP_PKEY *ret=NULL;
204         long j;
205         int type;
206         unsigned char *p;
207 #ifndef NO_DSA
208         X509_ALGOR *a;
209 #endif
210
211         if (key == NULL) goto err;
212
213         if (key->pkey != NULL)
214             {
215             CRYPTO_add(&key->pkey->references,1,CRYPTO_LOCK_EVP_PKEY);
216             return(key->pkey);
217             }
218
219         if (key->public_key == NULL) goto err;
220
221         type=OBJ_obj2nid(key->algor->algorithm);
222         p=key->public_key->data;
223         j=key->public_key->length;
224         if ((ret=d2i_PublicKey(type,NULL,&p,(long)j)) == NULL)
225                 {
226                 X509err(X509_F_X509_PUBKEY_GET,X509_R_ERR_ASN1_LIB);
227                 goto err;
228                 }
229         ret->save_parameters=0;
230
231 #ifndef NO_DSA
232         a=key->algor;
233         if (ret->type == EVP_PKEY_DSA)
234                 {
235                 if (a->parameter->type == V_ASN1_SEQUENCE)
236                         {
237                         ret->pkey.dsa->write_params=0;
238                         p=a->parameter->value.sequence->data;
239                         j=a->parameter->value.sequence->length;
240                         if (!d2i_DSAparams(&ret->pkey.dsa,&p,(long)j))
241                                 goto err;
242                         }
243                 ret->save_parameters=1;
244                 }
245 #endif
246         key->pkey=ret;
247         CRYPTO_add(&ret->references,1,CRYPTO_LOCK_EVP_PKEY);
248         return(ret);
249 err:
250         if (ret != NULL)
251                 EVP_PKEY_free(ret);
252         return(NULL);
253         }
254
255 /* Now two pseudo ASN1 routines that take an EVP_PKEY structure
256  * and encode or decode as X509_PUBKEY
257  */
258
259 EVP_PKEY *d2i_PUBKEY(EVP_PKEY **a, unsigned char **pp,
260              long length)
261 {
262         X509_PUBKEY *xpk;
263         EVP_PKEY *pktmp;
264         xpk = d2i_X509_PUBKEY(NULL, pp, length);
265         if(!xpk) return NULL;
266         pktmp = X509_PUBKEY_get(xpk);
267         X509_PUBKEY_free(xpk);
268         if(!pktmp) return NULL;
269         if(a) {
270                 EVP_PKEY_free(*a);
271                 *a = pktmp;
272         }
273         return pktmp;
274 }
275
276 int i2d_PUBKEY(EVP_PKEY *a, unsigned char **pp)
277 {
278         X509_PUBKEY *xpk=NULL;
279         int ret;
280         if(!a) return 0;
281         if(!X509_PUBKEY_set(&xpk, a)) return 0;
282         ret = i2d_X509_PUBKEY(xpk, pp);
283         X509_PUBKEY_free(xpk);
284         return ret;
285 }
286
287 /* The following are equivalents but which return RSA and DSA
288  * keys
289  */
290 #ifndef NO_RSA
291 RSA *d2i_RSA_PUBKEY(RSA **a, unsigned char **pp,
292              long length)
293 {
294         EVP_PKEY *pkey;
295         RSA *key;
296         unsigned char *q;
297         q = *pp;
298         pkey = d2i_PUBKEY(NULL, &q, length);
299         if(!pkey) return NULL;
300         key = EVP_PKEY_rget_RSA(pkey);
301         EVP_PKEY_free(pkey);
302         if(!key) return NULL;
303         *pp = q;
304         if(a) {
305                 RSA_free(*a);
306                 *a = key;
307         }
308         return key;
309 }
310
311 int i2d_RSA_PUBKEY(RSA *a, unsigned char **pp)
312 {
313         EVP_PKEY *pktmp;
314         int ret;
315         if(!a) return 0;
316         pktmp = EVP_PKEY_new();
317         if(!pktmp) {
318                 ASN1err(ASN1_F_I2D_RSA_PUBKEY, ERR_R_MALLOC_FAILURE);
319                 return 0;
320         }
321         EVP_PKEY_rset_RSA(pktmp, a);
322         ret = i2d_PUBKEY(pktmp, pp);
323         EVP_PKEY_free(pktmp);
324         return ret;
325 }
326 #endif
327
328 #ifndef NO_DSA
329 DSA *d2i_DSA_PUBKEY(DSA **a, unsigned char **pp,
330              long length)
331 {
332         EVP_PKEY *pkey;
333         DSA *key;
334         unsigned char *q;
335         q = *pp;
336         pkey = d2i_PUBKEY(NULL, &q, length);
337         if(!pkey) return NULL;
338         key = EVP_PKEY_rget_DSA(pkey);
339         EVP_PKEY_free(pkey);
340         if(!key) return NULL;
341         *pp = q;
342         if(a) {
343                 DSA_free(*a);
344                 *a = key;
345         }
346         return key;
347 }
348
349 int i2d_DSA_PUBKEY(DSA *a, unsigned char **pp)
350 {
351         EVP_PKEY *pktmp;
352         int ret;
353         if(!a) return 0;
354         pktmp = EVP_PKEY_new();
355         if(!pktmp) {
356                 ASN1err(ASN1_F_I2D_DSA_PUBKEY, ERR_R_MALLOC_FAILURE);
357                 return 0;
358         }
359         EVP_PKEY_rset_DSA(pktmp, a);
360         ret = i2d_PUBKEY(pktmp, pp);
361         EVP_PKEY_free(pktmp);
362         return ret;
363 }
364 #endif