]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/x509/x_all.c
Change functions to ANSI C.
[thirdparty/openssl.git] / crypto / x509 / x_all.c
CommitLineData
d02b48c6 1/* crypto/x509/x_all.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.
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#undef SSLEAY_MACROS
61#include "stack.h"
62#include "cryptlib.h"
63#include "buffer.h"
64#include "asn1.h"
65#include "evp.h"
66#include "x509.h"
67
6b691a5c 68int X509_verify(X509 *a, EVP_PKEY *r)
d02b48c6
RE
69 {
70 return(ASN1_verify((int (*)())i2d_X509_CINF,a->sig_alg,
71 a->signature,(char *)a->cert_info,r));
72 }
73
6b691a5c 74int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r)
d02b48c6
RE
75 {
76 return( ASN1_verify((int (*)())i2d_X509_REQ_INFO,
77 a->sig_alg,a->signature,(char *)a->req_info,r));
78 }
79
6b691a5c 80int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r)
d02b48c6
RE
81 {
82 return(ASN1_verify((int (*)())i2d_X509_CRL_INFO,
83 a->sig_alg, a->signature,(char *)a->crl,r));
84 }
85
6b691a5c 86int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r)
d02b48c6
RE
87 {
88 return(ASN1_verify((int (*)())i2d_NETSCAPE_SPKAC,
89 a->sig_algor,a->signature, (char *)a->spkac,r));
90 }
91
6b691a5c 92int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md)
d02b48c6
RE
93 {
94 return(ASN1_sign((int (*)())i2d_X509_CINF, x->cert_info->signature,
95 x->sig_alg, x->signature, (char *)x->cert_info,pkey,md));
96 }
97
6b691a5c 98int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md)
d02b48c6
RE
99 {
100 return(ASN1_sign((int (*)())i2d_X509_REQ_INFO,x->sig_alg, NULL,
101 x->signature, (char *)x->req_info,pkey,md));
102 }
103
6b691a5c 104int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md)
d02b48c6
RE
105 {
106 return(ASN1_sign((int (*)())i2d_X509_CRL_INFO,x->crl->sig_alg,
107 x->sig_alg, x->signature, (char *)x->crl,pkey,md));
108 }
109
6b691a5c 110int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *x, EVP_PKEY *pkey, const EVP_MD *md)
d02b48c6
RE
111 {
112 return(ASN1_sign((int (*)())i2d_NETSCAPE_SPKAC, x->sig_algor,NULL,
113 x->signature, (char *)x->spkac,pkey,md));
114 }
115
6b691a5c 116X509_ATTRIBUTE *X509_ATTRIBUTE_dup(X509_ATTRIBUTE *xa)
dfeab068
RE
117 {
118 return((X509_ATTRIBUTE *)ASN1_dup((int (*)())i2d_X509_ATTRIBUTE,
119 (char *(*)())d2i_X509_ATTRIBUTE,(char *)xa));
120 }
121
6b691a5c 122X509 *X509_dup(X509 *x509)
d02b48c6
RE
123 {
124 return((X509 *)ASN1_dup((int (*)())i2d_X509,
125 (char *(*)())d2i_X509,(char *)x509));
126 }
127
6b691a5c 128X509_EXTENSION *X509_EXTENSION_dup(X509_EXTENSION *ex)
d02b48c6
RE
129 {
130 return((X509_EXTENSION *)ASN1_dup(
131 (int (*)())i2d_X509_EXTENSION,
132 (char *(*)())d2i_X509_EXTENSION,(char *)ex));
133 }
134
58964a49 135#ifndef NO_FP_API
6b691a5c 136X509 *d2i_X509_fp(FILE *fp, X509 *x509)
d02b48c6
RE
137 {
138 return((X509 *)ASN1_d2i_fp((char *(*)())X509_new,
139 (char *(*)())d2i_X509, (fp),(unsigned char **)(x509)));
140 }
141
6b691a5c 142int i2d_X509_fp(FILE *fp, X509 *x509)
d02b48c6
RE
143 {
144 return(ASN1_i2d_fp(i2d_X509,fp,(unsigned char *)x509));
145 }
146#endif
147
6b691a5c 148X509 *d2i_X509_bio(BIO *bp, X509 *x509)
d02b48c6
RE
149 {
150 return((X509 *)ASN1_d2i_bio((char *(*)())X509_new,
151 (char *(*)())d2i_X509, (bp),(unsigned char **)(x509)));
152 }
153
6b691a5c 154int i2d_X509_bio(BIO *bp, X509 *x509)
d02b48c6
RE
155 {
156 return(ASN1_i2d_bio(i2d_X509,bp,(unsigned char *)x509));
157 }
158
6b691a5c 159X509_CRL *X509_CRL_dup(X509_CRL *crl)
d02b48c6
RE
160 {
161 return((X509_CRL *)ASN1_dup((int (*)())i2d_X509_CRL,
162 (char *(*)())d2i_X509_CRL,(char *)crl));
163 }
164
58964a49 165#ifndef NO_FP_API
6b691a5c 166X509_CRL *d2i_X509_CRL_fp(FILE *fp, X509_CRL *crl)
d02b48c6
RE
167 {
168 return((X509_CRL *)ASN1_d2i_fp((char *(*)())
169 X509_CRL_new,(char *(*)())d2i_X509_CRL, (fp),
170 (unsigned char **)(crl)));
171 }
172
6b691a5c 173int i2d_X509_CRL_fp(FILE *fp, X509_CRL *crl)
d02b48c6
RE
174 {
175 return(ASN1_i2d_fp(i2d_X509_CRL,fp,(unsigned char *)crl));
176 }
177#endif
178
6b691a5c 179X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL *crl)
d02b48c6
RE
180 {
181 return((X509_CRL *)ASN1_d2i_bio((char *(*)())
182 X509_CRL_new,(char *(*)())d2i_X509_CRL, (bp),
183 (unsigned char **)(crl)));
184 }
185
6b691a5c 186int i2d_X509_CRL_bio(BIO *bp, X509_CRL *crl)
d02b48c6
RE
187 {
188 return(ASN1_i2d_bio(i2d_X509_CRL,bp,(unsigned char *)crl));
189 }
190
6b691a5c 191PKCS7 *PKCS7_dup(PKCS7 *p7)
d02b48c6
RE
192 {
193 return((PKCS7 *)ASN1_dup((int (*)())i2d_PKCS7,
194 (char *(*)())d2i_PKCS7,(char *)p7));
195 }
196
58964a49 197#ifndef NO_FP_API
6b691a5c 198PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 *p7)
d02b48c6
RE
199 {
200 return((PKCS7 *)ASN1_d2i_fp((char *(*)())
201 PKCS7_new,(char *(*)())d2i_PKCS7, (fp),
202 (unsigned char **)(p7)));
203 }
204
6b691a5c 205int i2d_PKCS7_fp(FILE *fp, PKCS7 *p7)
d02b48c6
RE
206 {
207 return(ASN1_i2d_fp(i2d_PKCS7,fp,(unsigned char *)p7));
208 }
209#endif
210
6b691a5c 211PKCS7 *d2i_PKCS7_bio(BIO *bp, PKCS7 *p7)
d02b48c6
RE
212 {
213 return((PKCS7 *)ASN1_d2i_bio((char *(*)())
214 PKCS7_new,(char *(*)())d2i_PKCS7, (bp),
215 (unsigned char **)(p7)));
216 }
217
6b691a5c 218int i2d_PKCS7_bio(BIO *bp, PKCS7 *p7)
d02b48c6
RE
219 {
220 return(ASN1_i2d_bio(i2d_PKCS7,bp,(unsigned char *)p7));
221 }
222
6b691a5c 223X509_REQ *X509_REQ_dup(X509_REQ *req)
d02b48c6
RE
224 {
225 return((X509_REQ *)ASN1_dup((int (*)())i2d_X509_REQ,
226 (char *(*)())d2i_X509_REQ,(char *)req));
227 }
228
58964a49 229#ifndef NO_FP_API
6b691a5c 230X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ *req)
d02b48c6
RE
231 {
232 return((X509_REQ *)ASN1_d2i_fp((char *(*)())
233 X509_REQ_new, (char *(*)())d2i_X509_REQ, (fp),
234 (unsigned char **)(req)));
235 }
236
6b691a5c 237int i2d_X509_REQ_fp(FILE *fp, X509_REQ *req)
d02b48c6
RE
238 {
239 return(ASN1_i2d_fp(i2d_X509_REQ,fp,(unsigned char *)req));
240 }
241#endif
242
6b691a5c 243X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ *req)
d02b48c6
RE
244 {
245 return((X509_REQ *)ASN1_d2i_bio((char *(*)())
246 X509_REQ_new, (char *(*)())d2i_X509_REQ, (bp),
247 (unsigned char **)(req)));
248 }
249
6b691a5c 250int i2d_X509_REQ_bio(BIO *bp, X509_REQ *req)
d02b48c6
RE
251 {
252 return(ASN1_i2d_bio(i2d_X509_REQ,bp,(unsigned char *)req));
253 }
254
255#ifndef NO_RSA
6b691a5c 256RSA *RSAPublicKey_dup(RSA *rsa)
d02b48c6
RE
257 {
258 return((RSA *)ASN1_dup((int (*)())i2d_RSAPublicKey,
259 (char *(*)())d2i_RSAPublicKey,(char *)rsa));
260 }
261
6b691a5c 262RSA *RSAPrivateKey_dup(RSA *rsa)
d02b48c6
RE
263 {
264 return((RSA *)ASN1_dup((int (*)())i2d_RSAPrivateKey,
265 (char *(*)())d2i_RSAPrivateKey,(char *)rsa));
266 }
267
58964a49 268#ifndef NO_FP_API
6b691a5c 269RSA *d2i_RSAPrivateKey_fp(FILE *fp, RSA *rsa)
d02b48c6
RE
270 {
271 return((RSA *)ASN1_d2i_fp((char *(*)())
272 RSA_new,(char *(*)())d2i_RSAPrivateKey, (fp),
273 (unsigned char **)(rsa)));
274 }
275
6b691a5c 276int i2d_RSAPrivateKey_fp(FILE *fp, RSA *rsa)
d02b48c6
RE
277 {
278 return(ASN1_i2d_fp(i2d_RSAPrivateKey,fp,(unsigned char *)rsa));
279 }
280
6b691a5c 281RSA *d2i_RSAPublicKey_fp(FILE *fp, RSA *rsa)
d02b48c6
RE
282 {
283 return((RSA *)ASN1_d2i_fp((char *(*)())
284 RSA_new,(char *(*)())d2i_RSAPublicKey, (fp),
285 (unsigned char **)(rsa)));
286 }
287
6b691a5c 288int i2d_RSAPublicKey_fp(FILE *fp, RSA *rsa)
d02b48c6
RE
289 {
290 return(ASN1_i2d_fp(i2d_RSAPublicKey,fp,(unsigned char *)rsa));
291 }
292#endif
293
6b691a5c 294RSA *d2i_RSAPrivateKey_bio(BIO *bp, RSA *rsa)
d02b48c6
RE
295 {
296 return((RSA *)ASN1_d2i_bio((char *(*)())
297 RSA_new,(char *(*)())d2i_RSAPrivateKey, (bp),
298 (unsigned char **)(rsa)));
299 }
300
6b691a5c 301int i2d_RSAPrivateKey_bio(BIO *bp, RSA *rsa)
d02b48c6
RE
302 {
303 return(ASN1_i2d_bio(i2d_RSAPrivateKey,bp,(unsigned char *)rsa));
304 }
305
6b691a5c 306RSA *d2i_RSAPublicKey_bio(BIO *bp, RSA *rsa)
d02b48c6
RE
307 {
308 return((RSA *)ASN1_d2i_bio((char *(*)())
309 RSA_new,(char *(*)())d2i_RSAPublicKey, (bp),
310 (unsigned char **)(rsa)));
311 }
312
6b691a5c 313int i2d_RSAPublicKey_bio(BIO *bp, RSA *rsa)
d02b48c6
RE
314 {
315 return(ASN1_i2d_bio(i2d_RSAPublicKey,bp,(unsigned char *)rsa));
316 }
317#endif
318
319#ifndef NO_DSA
58964a49 320#ifndef NO_FP_API
6b691a5c 321DSA *d2i_DSAPrivateKey_fp(FILE *fp, DSA *dsa)
d02b48c6
RE
322 {
323 return((DSA *)ASN1_d2i_fp((char *(*)())
324 DSA_new,(char *(*)())d2i_DSAPrivateKey, (fp),
325 (unsigned char **)(dsa)));
326 }
327
6b691a5c 328int i2d_DSAPrivateKey_fp(FILE *fp, DSA *dsa)
d02b48c6
RE
329 {
330 return(ASN1_i2d_fp(i2d_DSAPrivateKey,fp,(unsigned char *)dsa));
331 }
332#endif
333
6b691a5c 334DSA *d2i_DSAPrivateKey_bio(BIO *bp, DSA *dsa)
d02b48c6
RE
335 {
336 return((DSA *)ASN1_d2i_bio((char *(*)())
337 DSA_new,(char *(*)())d2i_DSAPrivateKey, (bp),
338 (unsigned char **)(dsa)));
339 }
340
6b691a5c 341int i2d_DSAPrivateKey_bio(BIO *bp, DSA *dsa)
d02b48c6
RE
342 {
343 return(ASN1_i2d_bio(i2d_DSAPrivateKey,bp,(unsigned char *)dsa));
344 }
345#endif
346
6b691a5c 347X509_ALGOR *X509_ALGOR_dup(X509_ALGOR *xn)
dfeab068
RE
348 {
349 return((X509_ALGOR *)ASN1_dup((int (*)())i2d_X509_ALGOR,
350 (char *(*)())d2i_X509_ALGOR,(char *)xn));
351 }
352
6b691a5c 353X509_NAME *X509_NAME_dup(X509_NAME *xn)
d02b48c6
RE
354 {
355 return((X509_NAME *)ASN1_dup((int (*)())i2d_X509_NAME,
356 (char *(*)())d2i_X509_NAME,(char *)xn));
357 }
358
6b691a5c 359X509_NAME_ENTRY *X509_NAME_ENTRY_dup(X509_NAME_ENTRY *ne)
d02b48c6
RE
360 {
361 return((X509_NAME_ENTRY *)ASN1_dup((int (*)())i2d_X509_NAME_ENTRY,
362 (char *(*)())d2i_X509_NAME_ENTRY,(char *)ne));
363 }
364
6b691a5c
UM
365int X509_digest(X509 *data, EVP_MD *type, unsigned char *md,
366 unsigned int *len)
d02b48c6
RE
367 {
368 return(ASN1_digest((int (*)())i2d_X509,type,(char *)data,md,len));
369 }
370
6b691a5c
UM
371int X509_NAME_digest(X509_NAME *data, EVP_MD *type, unsigned char *md,
372 unsigned int *len)
d02b48c6
RE
373 {
374 return(ASN1_digest((int (*)())i2d_X509_NAME,type,(char *)data,md,len));
375 }
376
6b691a5c
UM
377int PKCS7_ISSUER_AND_SERIAL_digest(PKCS7_ISSUER_AND_SERIAL *data, EVP_MD *type,
378 unsigned char *md, unsigned int *len)
d02b48c6
RE
379 {
380 return(ASN1_digest((int (*)())i2d_PKCS7_ISSUER_AND_SERIAL,type,
381 (char *)data,md,len));
382 }
383