Import of old SSLeay release: SSLeay 0.9.1b (unreleased)
[openssl.git] / crypto / x509 / x509.h
1 /* crypto/x509/x509.h */
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 #ifndef HEADER_X509_H
60 #define HEADER_X509_H
61
62 #ifdef  __cplusplus
63 extern "C" {
64 #endif
65
66 #include "stack.h"
67 #include "asn1.h"
68
69 #ifndef NO_RSA
70 #include "rsa.h"
71 #else
72 #define RSA     long
73 #endif
74
75 #ifndef NO_DSA
76 #include "dsa.h"
77 #else
78 #define DSA     long
79 #endif
80
81 #ifndef NO_DH
82 #include "dh.h"
83 #else
84 #define DH      long
85 #endif
86
87 #include "evp.h"
88
89 #define X509_FILETYPE_PEM       1
90 #define X509_FILETYPE_ASN1      2
91 #define X509_FILETYPE_DEFAULT   3
92
93 #define X509v3_KU_DIGITAL_SIGNATURE     0x0080
94 #define X509v3_KU_NON_REPUDIATION       0x0040
95 #define X509v3_KU_KEY_ENCIPHERMENT      0x0020
96 #define X509v3_KU_DATA_ENCIPHERMENT     0x0010
97 #define X509v3_KU_KEY_AGREEMENT         0x0008
98 #define X509v3_KU_KEY_CERT_SIGN         0x0004
99 #define X509v3_KU_CRL_SIGN              0x0002
100 #define X509v3_KU_ENCIPHER_ONLY         0x0001
101 #define X509v3_KU_DECIPHER_ONLY         0x8000
102 #define X509v3_KU_UNDEF                 0xffff
103
104 typedef struct X509_objects_st
105         {
106         int nid;
107         int (*a2i)();
108         int (*i2a)();
109         } X509_OBJECTS;
110
111 typedef struct X509_algor_st
112         {
113         ASN1_OBJECT *algorithm;
114         ASN1_TYPE *parameter;
115         } X509_ALGOR;
116
117 typedef struct X509_val_st
118         {
119         ASN1_UTCTIME *notBefore;
120         ASN1_UTCTIME *notAfter;
121         } X509_VAL;
122
123 typedef struct X509_pubkey_st
124         {
125         X509_ALGOR *algor;
126         ASN1_BIT_STRING *public_key;
127         struct evp_pkey_st /* EVP_PKEY*/ *pkey;
128         } X509_PUBKEY;
129
130 typedef struct X509_sig_st
131         {
132         X509_ALGOR *algor;
133         ASN1_OCTET_STRING *digest;
134         } X509_SIG;
135
136 typedef struct X509_name_entry_st
137         {
138         ASN1_OBJECT *object;
139         ASN1_STRING *value;
140         int set;
141         int size;       /* temp variable */
142         } X509_NAME_ENTRY;
143
144 /* we always keep X509_NAMEs in 2 forms. */
145 typedef struct X509_name_st
146         {
147         STACK *entries; /* of X509_NAME_ENTRY */
148         int modified;   /* true if 'bytes' needs to be built */
149 #ifdef HEADER_BUFFER_H
150         BUF_MEM *bytes;
151 #else
152         char *bytes;
153 #endif
154         unsigned long hash; /* Keep the hash around for lookups */
155         } X509_NAME;
156
157 #define X509_EX_V_NETSCAPE_HACK         0x8000
158 #define X509_EX_V_INIT                  0x0001
159 typedef struct X509_extension_st
160         {
161         ASN1_OBJECT *object;
162         short critical;
163         short netscape_hack;
164         ASN1_OCTET_STRING *value;
165         long argl;                      /* used when decoding */
166         char *argp;                     /* used when decoding */
167         void (*ex_free)();              /* clear argp stuff */
168         } X509_EXTENSION;
169
170 /* #if 1 */
171 typedef struct x509_extension_method_st
172         {
173         int nid;
174         int data_type;
175         int pack_type;
176         void (*ex_clear)();
177         int (*ex_get_bool)();
178         int (*ex_set_bool)();
179         int (*ex_get_str)();
180         int (*ex_set_str)();
181         char *(*ex_get_struct)();
182         int (*ex_set_struct)();
183         int (*a2i)();
184         int (*i2a)();
185         } X509_EXTENSION_METHOD;
186 /* #endif */
187
188 typedef struct X509_req_info_st
189         {
190         ASN1_INTEGER *version;
191         X509_NAME *subject;
192         X509_PUBKEY *pubkey;
193         /*  d=2 hl=2 l=  0 cons: cont: 00 */
194         STACK /* X509_ATTRIBUTE */ *attributes; /* [ 0 ] */
195         int req_kludge;
196         } X509_REQ_INFO;
197
198 typedef struct X509_req_st
199         {
200         X509_REQ_INFO *req_info;
201         X509_ALGOR *sig_alg;
202         ASN1_BIT_STRING *signature;
203         int references;
204         } X509_REQ;
205
206 typedef struct x509_cinf_st
207         {
208         ASN1_INTEGER *version;          /* [ 0 ] default of v1 */
209         ASN1_INTEGER *serialNumber;
210         X509_ALGOR *signature;
211         X509_NAME *issuer;
212         X509_VAL *validity;
213         X509_NAME *subject;
214         X509_PUBKEY *key;
215         ASN1_BIT_STRING *issuerUID;             /* [ 1 ] optional in v2 */
216         ASN1_BIT_STRING *subjectUID;            /* [ 2 ] optional in v2 */
217         STACK /* X509_EXTENSION */ *extensions; /* [ 3 ] optional in v3 */
218         } X509_CINF;
219
220 typedef struct x509_st
221         {
222         X509_CINF *cert_info;
223         X509_ALGOR *sig_alg;
224         ASN1_BIT_STRING *signature;
225         int valid;
226         int references;
227         char *name;
228         } X509;
229
230 typedef struct X509_revoked_st
231         {
232         ASN1_INTEGER *serialNumber;
233         ASN1_UTCTIME *revocationDate;
234         STACK /* optional X509_EXTENSION */ *extensions;
235         int sequence; /* load sequence */
236         } X509_REVOKED;
237
238 typedef struct X509_crl_info_st
239         {
240         ASN1_INTEGER *version;
241         X509_ALGOR *sig_alg;
242         X509_NAME *issuer;
243         ASN1_UTCTIME *lastUpdate;
244         ASN1_UTCTIME *nextUpdate;
245         STACK /* X509_REVOKED */ *revoked;
246         STACK /* [0] X509_EXTENSION */ *extensions;
247         } X509_CRL_INFO;
248
249 typedef struct X509_crl_st
250         {
251         /* actual signature */
252         X509_CRL_INFO *crl;
253         X509_ALGOR *sig_alg;
254         ASN1_BIT_STRING *signature;
255         int references;
256         } X509_CRL;
257
258 /* a sequence of these are used */
259 typedef struct x509_attributes_st
260         {
261         ASN1_OBJECT *object;
262         int set; /* 1 for a set, 0 for a single item (which is wrong) */
263         union   {
264                 char            *ptr;
265 /* 1 */         STACK /* ASN1_TYPE */ *set;
266 /* 0 */         ASN1_TYPE       *single;
267                 } value;
268         } X509_ATTRIBUTE;
269
270 typedef struct private_key_st
271         {
272         int version;
273         /* The PKCS#8 data types */
274         X509_ALGOR *enc_algor;
275         ASN1_OCTET_STRING *enc_pkey;    /* encrypted pub key */
276
277         /* When decrypted, the following will not be NULL */
278         EVP_PKEY *dec_pkey;
279
280         /* used to encrypt and decrypt */
281         int key_length;
282         char *key_data;
283         int key_free;   /* true if we should auto free key_data */
284
285         /* expanded version of 'enc_algor' */
286         EVP_CIPHER_INFO cipher;
287
288         int references;
289         } X509_PKEY;
290
291 #ifdef HEADER_ENVELOPE_H
292 typedef struct X509_info_st
293         {
294         X509 *x509;
295         X509_CRL *crl;
296         X509_PKEY *x_pkey;
297
298         EVP_CIPHER_INFO enc_cipher;
299         int enc_len;
300         char *enc_data;
301
302         int references;
303         } X509_INFO;
304 #endif
305
306 /* The next 2 structures and their 8 routines were sent to me by
307  * Pat Richard <patr@x509.com> and are used to manipulate
308  * Netscapes spki strucutres - usefull if you are writing a CA web page
309  */
310 typedef struct Netscape_spkac_st
311         {
312         X509_PUBKEY *pubkey;
313         ASN1_IA5STRING *challenge;      /* challenge sent in atlas >= PR2 */
314         } NETSCAPE_SPKAC;
315
316 typedef struct Netscape_spki_st
317         {
318         NETSCAPE_SPKAC *spkac;  /* signed public key and challenge */
319         X509_ALGOR *sig_algor;
320         ASN1_BIT_STRING *signature;
321         } NETSCAPE_SPKI;
322
323 #ifndef HEADER_BN_H
324 #define BIGNUM          char
325 #endif
326
327 typedef struct CBCParameter_st
328         {
329         unsigned char iv[8];
330         } CBC_PARAM;
331
332 #include "x509_vfy.h"
333 #include "pkcs7.h"
334
335 #ifdef SSLEAY_MACROS
336 #define X509_verify(a,r) ASN1_verify((int (*)())i2d_X509_CINF,a->sig_alg,\
337         a->signature,(char *)a->cert_info,r)
338 #define X509_REQ_verify(a,r) ASN1_verify((int (*)())i2d_X509_REQ_INFO, \
339         a->sig_alg,a->signature,(char *)a->req_info,r)
340 #define X509_CRL_verify(a,r) ASN1_verify((int (*)())i2d_X509_CRL_INFO, \
341         a->sig_alg, a->signature,(char *)a->crl,r)
342
343 #define X509_sign(x,pkey,md) \
344         ASN1_sign((int (*)())i2d_X509_CINF, x->cert_info->signature, \
345                 x->sig_alg, x->signature, (char *)x->cert_info,pkey,md)
346 #define X509_REQ_sign(x,pkey,md) \
347         ASN1_sign((int (*)())i2d_X509_REQ_INFO,x->sig_alg, NULL, \
348                 x->signature, (char *)x->req_info,pkey,md)
349 #define X509_CRL_sign(x,pkey,md) \
350         ASN1_sign((int (*)())i2d_X509_CRL_INFO,x->crl->sig_alg,x->sig_alg, \
351                 x->signature, (char *)x->crl,pkey,md)
352 #define NETSCAPE_SPKI_sign(x,pkey,md) \
353         ASN1_sign((int (*)())i2d_NETSCAPE_SPKAC, x->sig_algor,NULL, \
354                 x->signature, (char *)x->spkac,pkey,md)
355
356 #define X509_dup(x509) (X509 *)ASN1_dup((int (*)())i2d_X509, \
357                 (char *(*)())d2i_X509,(char *)x509)
358 #define X509_ATTRIBUTE_dup(xa) (X509_ATTRIBUTE *)ASN1_dup(\
359                 (int (*)())i2d_X509_ATTRIBUTE, \
360                 (char *(*)())d2i_X509_ATTRIBUTE,(char *)xa)
361 #define X509_EXTENSION_dup(ex) (X509_EXTENSION *)ASN1_dup( \
362                 (int (*)())i2d_X509_EXTENSION, \
363                 (char *(*)())d2i_X509_EXTENSION,(char *)ex)
364 #define d2i_X509_fp(fp,x509) (X509 *)ASN1_d2i_fp((char *(*)())X509_new, \
365                 (char *(*)())d2i_X509, (fp),(unsigned char **)(x509))
366 #define i2d_X509_fp(fp,x509) ASN1_i2d_fp(i2d_X509,fp,(unsigned char *)x509)
367 #define d2i_X509_bio(bp,x509) (X509 *)ASN1_d2i_bio((char *(*)())X509_new, \
368                 (char *(*)())d2i_X509, (bp),(unsigned char **)(x509))
369 #define i2d_X509_bio(bp,x509) ASN1_i2d_bio(i2d_X509,bp,(unsigned char *)x509)
370
371 #define X509_CRL_dup(crl) (X509_CRL *)ASN1_dup((int (*)())i2d_X509_CRL, \
372                 (char *(*)())d2i_X509_CRL,(char *)crl)
373 #define d2i_X509_CRL_fp(fp,crl) (X509_CRL *)ASN1_d2i_fp((char *(*)()) \
374                 X509_CRL_new,(char *(*)())d2i_X509_CRL, (fp),\
375                 (unsigned char **)(crl))
376 #define i2d_X509_CRL_fp(fp,crl) ASN1_i2d_fp(i2d_X509_CRL,fp,\
377                 (unsigned char *)crl)
378 #define d2i_X509_CRL_bio(bp,crl) (X509_CRL *)ASN1_d2i_bio((char *(*)()) \
379                 X509_CRL_new,(char *(*)())d2i_X509_CRL, (bp),\
380                 (unsigned char **)(crl))
381 #define i2d_X509_CRL_bio(bp,crl) ASN1_i2d_bio(i2d_X509_CRL,bp,\
382                 (unsigned char *)crl)
383
384 #define PKCS7_dup(p7) (PKCS7 *)ASN1_dup((int (*)())i2d_PKCS7, \
385                 (char *(*)())d2i_PKCS7,(char *)p7)
386 #define d2i_PKCS7_fp(fp,p7) (PKCS7 *)ASN1_d2i_fp((char *(*)()) \
387                 PKCS7_new,(char *(*)())d2i_PKCS7, (fp),\
388                 (unsigned char **)(p7))
389 #define i2d_PKCS7_fp(fp,p7) ASN1_i2d_fp(i2d_PKCS7,fp,\
390                 (unsigned char *)p7)
391 #define d2i_PKCS7_bio(bp,p7) (PKCS7 *)ASN1_d2i_bio((char *(*)()) \
392                 PKCS7_new,(char *(*)())d2i_PKCS7, (bp),\
393                 (unsigned char **)(p7))
394 #define i2d_PKCS7_bio(bp,p7) ASN1_i2d_bio(i2d_PKCS7,bp,\
395                 (unsigned char *)p7)
396
397 #define X509_REQ_dup(req) (X509_REQ *)ASN1_dup((int (*)())i2d_X509_REQ, \
398                 (char *(*)())d2i_X509_REQ,(char *)req)
399 #define d2i_X509_REQ_fp(fp,req) (X509_REQ *)ASN1_d2i_fp((char *(*)())\
400                 X509_REQ_new, (char *(*)())d2i_X509_REQ, (fp),\
401                 (unsigned char **)(req))
402 #define i2d_X509_REQ_fp(fp,req) ASN1_i2d_fp(i2d_X509_REQ,fp,\
403                 (unsigned char *)req)
404 #define d2i_X509_REQ_bio(bp,req) (X509_REQ *)ASN1_d2i_bio((char *(*)())\
405                 X509_REQ_new, (char *(*)())d2i_X509_REQ, (bp),\
406                 (unsigned char **)(req))
407 #define i2d_X509_REQ_bio(bp,req) ASN1_i2d_bio(i2d_X509_REQ,bp,\
408                 (unsigned char *)req)
409
410 #define RSAPublicKey_dup(rsa) (RSA *)ASN1_dup((int (*)())i2d_RSAPublicKey, \
411                 (char *(*)())d2i_RSAPublicKey,(char *)rsa)
412 #define RSAPrivateKey_dup(rsa) (RSA *)ASN1_dup((int (*)())i2d_RSAPrivateKey, \
413                 (char *(*)())d2i_RSAPrivateKey,(char *)rsa)
414
415 #define d2i_RSAPrivateKey_fp(fp,rsa) (RSA *)ASN1_d2i_fp((char *(*)())\
416                 RSA_new,(char *(*)())d2i_RSAPrivateKey, (fp), \
417                 (unsigned char **)(rsa))
418 #define i2d_RSAPrivateKey_fp(fp,rsa) ASN1_i2d_fp(i2d_RSAPrivateKey,fp, \
419                 (unsigned char *)rsa)
420 #define d2i_RSAPrivateKey_bio(bp,rsa) (RSA *)ASN1_d2i_bio((char *(*)())\
421                 RSA_new,(char *(*)())d2i_RSAPrivateKey, (bp), \
422                 (unsigned char **)(rsa))
423 #define i2d_RSAPrivateKey_bio(bp,rsa) ASN1_i2d_bio(i2d_RSAPrivateKey,bp, \
424                 (unsigned char *)rsa)
425
426 #define d2i_RSAPublicKey_fp(fp,rsa) (RSA *)ASN1_d2i_fp((char *(*)())\
427                 RSA_new,(char *(*)())d2i_RSAPublicKey, (fp), \
428                 (unsigned char **)(rsa))
429 #define i2d_RSAPublicKey_fp(fp,rsa) ASN1_i2d_fp(i2d_RSAPublicKey,fp, \
430                 (unsigned char *)rsa)
431 #define d2i_RSAPublicKey_bio(bp,rsa) (RSA *)ASN1_d2i_bio((char *(*)())\
432                 RSA_new,(char *(*)())d2i_RSAPublicKey, (bp), \
433                 (unsigned char **)(rsa))
434 #define i2d_RSAPublicKey_bio(bp,rsa) ASN1_i2d_bio(i2d_RSAPublicKey,bp, \
435                 (unsigned char *)rsa)
436
437 #define d2i_DSAPrivateKey_fp(fp,dsa) (DSA *)ASN1_d2i_fp((char *(*)())\
438                 DSA_new,(char *(*)())d2i_DSAPrivateKey, (fp), \
439                 (unsigned char **)(dsa))
440 #define i2d_DSAPrivateKey_fp(fp,dsa) ASN1_i2d_fp(i2d_DSAPrivateKey,fp, \
441                 (unsigned char *)dsa)
442 #define d2i_DSAPrivateKey_bio(bp,dsa) (DSA *)ASN1_d2i_bio((char *(*)())\
443                 DSA_new,(char *(*)())d2i_DSAPrivateKey, (bp), \
444                 (unsigned char **)(dsa))
445 #define i2d_DSAPrivateKey_bio(bp,dsa) ASN1_i2d_bio(i2d_DSAPrivateKey,bp, \
446                 (unsigned char *)dsa)
447
448 #define X509_ALGOR_dup(xn) (X509_ALGOR *)ASN1_dup((int (*)())i2d_X509_ALGOR,\
449                 (char *(*)())d2i_X509_ALGOR,(char *)xn)
450
451 #define X509_NAME_dup(xn) (X509_NAME *)ASN1_dup((int (*)())i2d_X509_NAME, \
452                 (char *(*)())d2i_X509_NAME,(char *)xn)
453 #define X509_NAME_ENTRY_dup(ne) (X509_NAME_ENTRY *)ASN1_dup( \
454                 (int (*)())i2d_X509_NAME_ENTRY, \
455                 (char *(*)())d2i_X509_NAME_ENTRY,\
456                 (char *)ne)
457
458 #define X509_digest(data,type,md,len) \
459         ASN1_digest((int (*)())i2d_X509,type,(char *)data,md,len)
460 #define X509_NAME_digest(data,type,md,len) \
461         ASN1_digest((int (*)())i2d_X509_NAME,type,(char *)data,md,len)
462 #ifndef PKCS7_ISSUER_AND_SERIAL_digest
463 #define PKCS7_ISSUER_AND_SERIAL_digest(data,type,md,len) \
464         ASN1_digest((int (*)())i2d_PKCS7_ISSUER_AND_SERIAL,type,\
465                 (char *)data,md,len)
466 #endif
467 #endif
468
469 #define X509_EXT_PACK_UNKNOWN   1
470 #define X509_EXT_PACK_STRING    2
471
472 #define         X509_get_version(x) ASN1_INTEGER_get((x)->cert_info->version)
473 /* #define      X509_get_serialNumber(x) ((x)->cert_info->serialNumber) */
474 #define         X509_get_notBefore(x) ((x)->cert_info->validity->notBefore)
475 #define         X509_get_notAfter(x) ((x)->cert_info->validity->notAfter)
476 #define         X509_extract_key(x)     X509_get_pubkey(x) /*****/
477 #define         X509_REQ_get_version(x) ASN1_INTEGER_get((x)->req_info->version)
478 #define         X509_REQ_get_subject_name(x) ((x)->req_info->subject)
479 #define         X509_REQ_extract_key(a) X509_REQ_get_pubkey(a)
480 #define         X509_name_cmp(a,b)      X509_NAME_cmp((a),(b))
481 #define         X509_get_signature_type(x) EVP_PKEY_type(OBJ_obj2nid((x)->sig_alg->algorithm))
482
483 /* This one is only used so that a binary form can output, as in
484  * i2d_X509_NAME(X509_get_X509_PUBKEY(x),&buf) */
485 #define         X509_get_X509_PUBKEY(x) ((x)->cert_info->key)
486
487 #ifndef NOPROTO
488
489 #ifndef SSLEAY_MACROS
490 #ifdef HEADER_ENVELOPE_H
491 int X509_verify(X509 *a, EVP_PKEY *r);
492 char *X509_verify_cert_error_string(long n);
493
494 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
495 int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r);
496 int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r);
497
498 int X509_sign(X509 *x, EVP_PKEY *pkey, EVP_MD *md);
499 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, EVP_MD *md);
500 int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, EVP_MD *md);
501 int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *x, EVP_PKEY *pkey, EVP_MD *md);
502
503 int X509_digest(X509 *data,EVP_MD *type,unsigned char *md,unsigned int *len);
504 int X509_NAME_digest(X509_NAME *data,EVP_MD *type,
505         unsigned char *md,unsigned int *len);
506 #endif
507
508 #ifndef NO_FP_API
509 X509 *d2i_X509_fp(FILE *fp, X509 *x509);
510 int i2d_X509_fp(FILE *fp,X509 *x509);
511 X509_CRL *d2i_X509_CRL_fp(FILE *fp,X509_CRL *crl);
512 int i2d_X509_CRL_fp(FILE *fp,X509_CRL *crl);
513 X509_REQ *d2i_X509_REQ_fp(FILE *fp,X509_REQ *req);
514 int i2d_X509_REQ_fp(FILE *fp,X509_REQ *req);
515 RSA *d2i_RSAPrivateKey_fp(FILE *fp,RSA *rsa);
516 int i2d_RSAPrivateKey_fp(FILE *fp,RSA *rsa);
517 DSA *d2i_DSAPrivateKey_fp(FILE *fp, DSA *dsa);
518 int i2d_DSAPrivateKey_fp(FILE *fp, DSA *dsa);
519 RSA *d2i_RSAPublicKey_fp(FILE *fp,RSA *rsa);
520 int i2d_RSAPublicKey_fp(FILE *fp,RSA *rsa);
521 #endif
522
523 #ifdef HEADER_BIO_H
524 X509 *d2i_X509_bio(BIO *bp,X509 *x509);
525 int i2d_X509_bio(BIO *bp,X509 *x509);
526 X509_CRL *d2i_X509_CRL_bio(BIO *bp,X509_CRL *crl);
527 int i2d_X509_CRL_bio(BIO *bp,X509_CRL *crl);
528 X509_REQ *d2i_X509_REQ_bio(BIO *bp,X509_REQ *req);
529 int i2d_X509_REQ_bio(BIO *bp,X509_REQ *req);
530 RSA *d2i_RSAPrivateKey_bio(BIO *bp,RSA *rsa);
531 int i2d_RSAPrivateKey_bio(BIO *bp,RSA *rsa);
532 DSA *d2i_DSAPrivateKey_bio(BIO *bp, DSA *dsa);
533 int i2d_DSAPrivateKey_bio(BIO *bp, DSA *dsa);
534 RSA *d2i_RSAPublicKey_bio(BIO *bp,RSA *rsa);
535 int i2d_RSAPublicKey_bio(BIO *bp,RSA *rsa);
536 #endif
537
538 X509 *X509_dup(X509 *x509);
539 X509_ATTRIBUTE *X509_ATTRIBUTE_dup(X509_ATTRIBUTE *xa);
540 X509_EXTENSION *X509_EXTENSION_dup(X509_EXTENSION *ex);
541 X509_CRL *X509_CRL_dup(X509_CRL *crl);
542 X509_REQ *X509_REQ_dup(X509_REQ *req);
543 X509_ALGOR *X509_ALGOR_dup(X509_ALGOR *xn);
544 X509_NAME *X509_NAME_dup(X509_NAME *xn);
545 X509_NAME_ENTRY *X509_NAME_ENTRY_dup(X509_NAME_ENTRY *ne);
546 RSA *RSAPublicKey_dup(RSA *rsa);
547 RSA *RSAPrivateKey_dup(RSA *rsa);
548
549 #endif /* !SSLEAY_MACROS */
550
551 int             X509_cmp_current_time(ASN1_UTCTIME *s);
552 ASN1_UTCTIME *  X509_gmtime_adj(ASN1_UTCTIME *s, long adj);
553
554 char *          X509_get_default_cert_area(void );
555 char *          X509_get_default_cert_dir(void );
556 char *          X509_get_default_cert_file(void );
557 char *          X509_get_default_cert_dir_env(void );
558 char *          X509_get_default_cert_file_env(void );
559 char *          X509_get_default_private_dir(void );
560
561 X509_REQ *      X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, EVP_MD *md);
562 X509 *          X509_REQ_to_X509(X509_REQ *r, int days,EVP_PKEY *pkey);
563 void ERR_load_X509_strings(void );
564
565 X509_ALGOR *    X509_ALGOR_new(void );
566 void            X509_ALGOR_free(X509_ALGOR *a);
567 int             i2d_X509_ALGOR(X509_ALGOR *a,unsigned char **pp);
568 X509_ALGOR *    d2i_X509_ALGOR(X509_ALGOR **a,unsigned char **pp,
569                         long length);
570
571 X509_VAL *      X509_VAL_new(void );
572 void            X509_VAL_free(X509_VAL *a);
573 int             i2d_X509_VAL(X509_VAL *a,unsigned char **pp);
574 X509_VAL *      d2i_X509_VAL(X509_VAL **a,unsigned char **pp,
575                         long length);
576
577 X509_PUBKEY *   X509_PUBKEY_new(void );
578 void            X509_PUBKEY_free(X509_PUBKEY *a);
579 int             i2d_X509_PUBKEY(X509_PUBKEY *a,unsigned char **pp);
580 X509_PUBKEY *   d2i_X509_PUBKEY(X509_PUBKEY **a,unsigned char **pp,
581                         long length);
582 int             X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
583 EVP_PKEY *      X509_PUBKEY_get(X509_PUBKEY *key);
584 int             X509_get_pubkey_parameters(EVP_PKEY *pkey, STACK *chain);
585
586
587 X509_SIG *      X509_SIG_new(void );
588 void            X509_SIG_free(X509_SIG *a);
589 int             i2d_X509_SIG(X509_SIG *a,unsigned char **pp);
590 X509_SIG *      d2i_X509_SIG(X509_SIG **a,unsigned char **pp,long length);
591
592 X509_REQ_INFO *X509_REQ_INFO_new(void);
593 void            X509_REQ_INFO_free(X509_REQ_INFO *a);
594 int             i2d_X509_REQ_INFO(X509_REQ_INFO *a,unsigned char **pp);
595 X509_REQ_INFO *d2i_X509_REQ_INFO(X509_REQ_INFO **a,unsigned char **pp,
596                         long length);
597
598 X509_REQ *      X509_REQ_new(void);
599 void            X509_REQ_free(X509_REQ *a);
600 int             i2d_X509_REQ(X509_REQ *a,unsigned char **pp);
601 X509_REQ *      d2i_X509_REQ(X509_REQ **a,unsigned char **pp,long length);
602
603 X509_ATTRIBUTE *X509_ATTRIBUTE_new(void );
604 void            X509_ATTRIBUTE_free(X509_ATTRIBUTE *a);
605 int             i2d_X509_ATTRIBUTE(X509_ATTRIBUTE *a,unsigned char **pp);
606 X509_ATTRIBUTE *d2i_X509_ATTRIBUTE(X509_ATTRIBUTE **a,unsigned char **pp,
607                         long length);
608 X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype, char *value);
609
610
611 X509_EXTENSION *X509_EXTENSION_new(void );
612 void            X509_EXTENSION_free(X509_EXTENSION *a);
613 int             i2d_X509_EXTENSION(X509_EXTENSION *a,unsigned char **pp);
614 X509_EXTENSION *d2i_X509_EXTENSION(X509_EXTENSION **a,unsigned char **pp,
615                         long length);
616
617 X509_NAME_ENTRY *X509_NAME_ENTRY_new(void);
618 void            X509_NAME_ENTRY_free(X509_NAME_ENTRY *a);
619 int             i2d_X509_NAME_ENTRY(X509_NAME_ENTRY *a,unsigned char **pp);
620 X509_NAME_ENTRY *d2i_X509_NAME_ENTRY(X509_NAME_ENTRY **a,unsigned char **pp,
621                         long length);
622
623 X509_NAME *     X509_NAME_new(void);
624 void            X509_NAME_free(X509_NAME *a);
625 int             i2d_X509_NAME(X509_NAME *a,unsigned char **pp);
626 X509_NAME *     d2i_X509_NAME(X509_NAME **a,unsigned char **pp,long length);
627 int             X509_NAME_set(X509_NAME **xn, X509_NAME *name);
628
629
630 X509_CINF *     X509_CINF_new(void);
631 void            X509_CINF_free(X509_CINF *a);
632 int             i2d_X509_CINF(X509_CINF *a,unsigned char **pp);
633 X509_CINF *     d2i_X509_CINF(X509_CINF **a,unsigned char **pp,long length);
634
635 X509 *          X509_new(void);
636 void            X509_free(X509 *a);
637 int             i2d_X509(X509 *a,unsigned char **pp);
638 X509 *          d2i_X509(X509 **a,unsigned char **pp,long length);
639
640 X509_REVOKED *  X509_REVOKED_new(void);
641 void            X509_REVOKED_free(X509_REVOKED *a);
642 int             i2d_X509_REVOKED(X509_REVOKED *a,unsigned char **pp);
643 X509_REVOKED *  d2i_X509_REVOKED(X509_REVOKED **a,unsigned char **pp,long length);
644
645 X509_CRL_INFO *X509_CRL_INFO_new(void);
646 void            X509_CRL_INFO_free(X509_CRL_INFO *a);
647 int             i2d_X509_CRL_INFO(X509_CRL_INFO *a,unsigned char **pp);
648 X509_CRL_INFO *d2i_X509_CRL_INFO(X509_CRL_INFO **a,unsigned char **pp,
649                         long length);
650
651 X509_CRL *      X509_CRL_new(void);
652 void            X509_CRL_free(X509_CRL *a);
653 int             i2d_X509_CRL(X509_CRL *a,unsigned char **pp);
654 X509_CRL *      d2i_X509_CRL(X509_CRL **a,unsigned char **pp,long length);
655
656 X509_PKEY *     X509_PKEY_new(void );
657 void            X509_PKEY_free(X509_PKEY *a);
658 int             i2d_X509_PKEY(X509_PKEY *a,unsigned char **pp);
659 X509_PKEY *     d2i_X509_PKEY(X509_PKEY **a,unsigned char **pp,long length);
660
661 NETSCAPE_SPKI * NETSCAPE_SPKI_new(void );
662 void            NETSCAPE_SPKI_free(NETSCAPE_SPKI *a);
663 int             i2d_NETSCAPE_SPKI(NETSCAPE_SPKI *a,unsigned char **pp);
664 NETSCAPE_SPKI * d2i_NETSCAPE_SPKI(NETSCAPE_SPKI **a,unsigned char **pp,
665                         long length);
666
667 NETSCAPE_SPKAC *NETSCAPE_SPKAC_new(void );
668 void            NETSCAPE_SPKAC_free(NETSCAPE_SPKAC *a);
669 int             i2d_NETSCAPE_SPKAC(NETSCAPE_SPKAC *a,unsigned char **pp);
670 NETSCAPE_SPKAC *d2i_NETSCAPE_SPKAC(NETSCAPE_SPKAC **a,unsigned char **pp,
671                 long length);
672
673 #ifdef HEADER_ENVELOPE_H
674 X509_INFO *     X509_INFO_new(void);
675 void            X509_INFO_free(X509_INFO *a);
676 char *          X509_NAME_oneline(X509_NAME *a,char *buf,int size);
677
678 int ASN1_verify(int (*i2d)(), X509_ALGOR *algor1,
679         ASN1_BIT_STRING *signature,char *data,EVP_PKEY *pkey);
680
681 int ASN1_digest(int (*i2d)(),EVP_MD *type,char *data,
682         unsigned char *md,unsigned int *len);
683
684 int ASN1_sign(int (*i2d)(), X509_ALGOR *algor1, X509_ALGOR *algor2,
685         ASN1_BIT_STRING *signature,
686         char *data,EVP_PKEY *pkey, EVP_MD *type);
687 #endif
688
689 int             X509_set_version(X509 *x,long version);
690 int             X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial);
691 ASN1_INTEGER *  X509_get_serialNumber(X509 *x);
692 int             X509_set_issuer_name(X509 *x, X509_NAME *name);
693 X509_NAME *     X509_get_issuer_name(X509 *a);
694 int             X509_set_subject_name(X509 *x, X509_NAME *name);
695 X509_NAME *     X509_get_subject_name(X509 *a);
696 int             X509_set_notBefore(X509 *x, ASN1_UTCTIME *tm);
697 int             X509_set_notAfter(X509 *x, ASN1_UTCTIME *tm);
698 int             X509_set_pubkey(X509 *x, EVP_PKEY *pkey);
699 EVP_PKEY *      X509_get_pubkey(X509 *x);
700 int             X509_certificate_type(X509 *x,EVP_PKEY *pubkey /* optional */);
701
702 int             X509_REQ_set_version(X509_REQ *x,long version);
703 int             X509_REQ_set_subject_name(X509_REQ *req,X509_NAME *name);
704 int             X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey);
705 EVP_PKEY *      X509_REQ_get_pubkey(X509_REQ *req);
706
707 int             X509_check_private_key(X509 *x509,EVP_PKEY *pkey);
708
709 int             X509_issuer_and_serial_cmp(X509 *a, X509 *b);
710 unsigned long   X509_issuer_and_serial_hash(X509 *a);
711
712 int             X509_issuer_name_cmp(X509 *a, X509 *b);
713 unsigned long   X509_issuer_name_hash(X509 *a);
714
715 int             X509_subject_name_cmp(X509 *a,X509 *b);
716 unsigned long   X509_subject_name_hash(X509 *x);
717
718 int             X509_NAME_cmp (X509_NAME *a, X509_NAME *b);
719 unsigned long   X509_NAME_hash(X509_NAME *x);
720
721 int             X509_CRL_cmp(X509_CRL *a,X509_CRL *b);
722 #ifndef NO_FP_API
723 int             X509_print_fp(FILE *bp,X509 *x);
724 int             X509_REQ_print_fp(FILE *bp,X509_REQ *req);
725 #endif
726
727 #ifdef HEADER_BIO_H
728 int             X509_NAME_print(BIO *bp, X509_NAME *name, int obase);
729 int             X509_print(BIO *bp,X509 *x);
730 int             X509_REQ_print(BIO *bp,X509_REQ *req);
731 #endif
732
733 int             X509_NAME_entry_count(X509_NAME *name);
734 int             X509_NAME_get_text_by_NID(X509_NAME *name, int nid,
735                         char *buf,int len);
736 int             X509_NAME_get_text_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj,
737                         char *buf,int len);
738
739 /* NOTE: you should be passsing -1, not 0 as lastpos.  The functions that use
740  * lastpos, seach after that position on. */
741 int             X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos);
742 int             X509_NAME_get_index_by_OBJ(X509_NAME *name,ASN1_OBJECT *obj,
743                         int lastpos);
744 X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc);
745 X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc);
746 int             X509_NAME_add_entry(X509_NAME *name,X509_NAME_ENTRY *ne,
747                         int loc, int set);
748 X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid,
749                         int type,unsigned char *bytes, int len);
750 X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne,
751                         ASN1_OBJECT *obj, int type,unsigned char *bytes,
752                         int len);
753 int             X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne,
754                         ASN1_OBJECT *obj);
755 int             X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type,
756                         unsigned char *bytes, int len);
757 ASN1_OBJECT *   X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne);
758 ASN1_STRING *   X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne);
759
760 int             X509v3_get_ext_count(STACK *x);
761 int             X509v3_get_ext_by_NID(STACK *x, int nid, int lastpos);
762 int             X509v3_get_ext_by_OBJ(STACK *x,ASN1_OBJECT *obj,int lastpos);
763 int             X509v3_get_ext_by_critical(STACK *x, int crit, int lastpos);
764 X509_EXTENSION *X509v3_get_ext(STACK *x, int loc);
765 X509_EXTENSION *X509v3_delete_ext(STACK *x, int loc);
766 STACK *         X509v3_add_ext(STACK **x, X509_EXTENSION *ex, int loc);
767
768 int             X509v3_data_type_by_OBJ(ASN1_OBJECT *obj);
769 int             X509v3_data_type_by_NID(int nid);
770 int             X509v3_pack_type_by_OBJ(ASN1_OBJECT *obj);
771 int             X509v3_pack_type_by_NID(int nid);
772
773 int             X509_get_ext_count(X509 *x);
774 int             X509_get_ext_by_NID(X509 *x, int nid, int lastpos);
775 int             X509_get_ext_by_OBJ(X509 *x,ASN1_OBJECT *obj,int lastpos);
776 int             X509_get_ext_by_critical(X509 *x, int crit, int lastpos);
777 X509_EXTENSION *X509_get_ext(X509 *x, int loc);
778 X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
779 int             X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
780
781 int             X509_CRL_get_ext_count(X509_CRL *x);
782 int             X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos);
783 int             X509_CRL_get_ext_by_OBJ(X509_CRL *x,ASN1_OBJECT *obj,int lastpos);
784 int             X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos);
785 X509_EXTENSION *X509_CRL_get_ext(X509_CRL *x, int loc);
786 X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc);
787 int             X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc);
788
789 int             X509_REVOKED_get_ext_count(X509_REVOKED *x);
790 int             X509_REVOKED_get_ext_by_NID(X509_REVOKED *x, int nid, int lastpos);
791 int             X509_REVOKED_get_ext_by_OBJ(X509_REVOKED *x,ASN1_OBJECT *obj,int lastpos);
792 int             X509_REVOKED_get_ext_by_critical(X509_REVOKED *x, int crit, int lastpos);
793 X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *x, int loc);
794 X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc);
795 int             X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc);
796
797 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex,
798                         int nid, int crit, ASN1_OCTET_STRING *data);
799 X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
800                         ASN1_OBJECT *obj,int crit,ASN1_OCTET_STRING *data);
801 int             X509_EXTENSION_set_object(X509_EXTENSION *ex,ASN1_OBJECT *obj);
802 int             X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit);
803 int             X509_EXTENSION_set_data(X509_EXTENSION *ex,
804                         ASN1_OCTET_STRING *data);
805 ASN1_OBJECT *   X509_EXTENSION_get_object(X509_EXTENSION *ex);
806 ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne);
807 int             X509_EXTENSION_get_critical(X509_EXTENSION *ex);
808 ASN1_OCTET_STRING *X509v3_pack_string(ASN1_OCTET_STRING **ex,int type,
809                         unsigned char *bytes, int len);
810 ASN1_STRING *   X509v3_unpack_string(ASN1_STRING **ex,int type,
811                         ASN1_OCTET_STRING *os);
812
813 int             X509_verify_cert(X509_STORE_CTX *ctx);
814
815 /* lookup a cert from a X509 STACK */
816 X509 *X509_find_by_issuer_and_serial(STACK *sk,X509_NAME *name,
817                 ASN1_INTEGER *serial);
818 X509 *X509_find_by_subject(STACK *sk,X509_NAME *name);
819
820 #else
821
822 #ifndef SSLEAY_MACROS
823 #ifdef HEADER_ENVELOPE_H
824 int X509_verify();
825 int X509_REQ_verify();
826 int X509_CRL_verify();
827 int NETSCAPE_SPKI_verify();
828
829 int X509_sign();
830 int X509_REQ_sign();
831 int X509_CRL_sign();
832 int NETSCAPE_SPKI_sign();
833
834 int X509_digest();
835 int X509_NAME_digest();
836 #endif
837
838 #ifndef NO_FP_API
839 X509 *d2i_X509_fp();
840 int i2d_X509_fp();
841 X509_CRL *d2i_X509_CRL_fp();
842 int i2d_X509_CRL_fp();
843 X509_REQ *d2i_X509_REQ_fp();
844 int i2d_X509_REQ_fp();
845 RSA *d2i_RSAPrivateKey_fp();
846 int i2d_RSAPrivateKey_fp();
847 DSA *d2i_DSAPrivateKey_fp();
848 int i2d_DSAPrivateKey_fp();
849 RSA *d2i_RSAPublicKey_fp();
850 int i2d_RSAPublicKey_fp();
851 #endif
852
853 X509 *d2i_X509_bio();
854 int i2d_X509_bio();
855 X509_CRL *d2i_X509_CRL_bio();
856 int i2d_X509_CRL_bio();
857 X509_REQ *d2i_X509_REQ_bio();
858 int i2d_X509_REQ_bio();
859 RSA *d2i_RSAPrivateKey_bio();
860 int i2d_RSAPrivateKey_bio();
861 DSA *d2i_DSAPrivateKey_bio();
862 int i2d_DSAPrivateKey_bio();
863 RSA *d2i_RSAPublicKey_bio();
864 int i2d_RSAPublicKey_bio();
865
866 X509 *X509_dup();
867 X509_ATTRIBUTE *X509_ATTRIBUTE_dup();
868 X509_EXTENSION *X509_EXTENSION_dup();
869 X509_CRL *X509_CRL_dup();
870 X509_REQ *X509_REQ_dup();
871 X509_NAME *X509_NAME_dup();
872 X509_NAME_ENTRY *X509_NAME_ENTRY_dup();
873 RSA *RSAPublicKey_dup();
874 RSA *RSAPrivateKey_dup();
875
876 #endif /* !SSLEAY_MACROS */
877
878 int             X509_cmp_current_time();
879 ASN1_UTCTIME *  X509_gmtime_adj();
880
881 char *          X509_get_default_cert_area();
882 char *          X509_get_default_cert_dir();
883 char *          X509_get_default_cert_file();
884 char *          X509_get_default_cert_dir_env();
885 char *          X509_get_default_cert_file_env();
886 char *          X509_get_default_private_dir();
887
888 X509_REQ *      X509_to_X509_REQ();
889 X509 *          X509_REQ_to_X509();
890 void ERR_load_X509_strings();
891
892 X509_ALGOR *    X509_ALGOR_new();
893 void            X509_ALGOR_free();
894 int             i2d_X509_ALGOR();
895 X509_ALGOR *    d2i_X509_ALGOR();
896
897 X509_VAL *      X509_VAL_new();
898 void            X509_VAL_free();
899 int             i2d_X509_VAL();
900 X509_VAL *      d2i_X509_VAL();
901
902 X509_PUBKEY *   X509_PUBKEY_new();
903 void            X509_PUBKEY_free();
904 int             i2d_X509_PUBKEY();
905 X509_PUBKEY *   d2i_X509_PUBKEY();
906 int             X509_PUBKEY_set();
907 EVP_PKEY *      X509_PUBKEY_get();
908 int             X509_get_pubkey_parameters();
909
910 X509_SIG *      X509_SIG_new();
911 void            X509_SIG_free();
912 int             i2d_X509_SIG();
913 X509_SIG *      d2i_X509_SIG();
914
915 X509_REQ_INFO *X509_REQ_INFO_new();
916 void            X509_REQ_INFO_free();
917 int             i2d_X509_REQ_INFO();
918 X509_REQ_INFO *d2i_X509_REQ_INFO();
919
920 X509_REQ *      X509_REQ_new();
921 void            X509_REQ_free();
922 int             i2d_X509_REQ();
923 X509_REQ *      d2i_X509_REQ();
924
925 X509_ATTRIBUTE *X509_ATTRIBUTE_new();
926 void            X509_ATTRIBUTE_free();
927 int             i2d_X509_ATTRIBUTE();
928 X509_ATTRIBUTE *d2i_X509_ATTRIBUTE();
929 X509_ATTRIBUTE *X509_ATTRIBUTE_create();
930
931 X509_EXTENSION *X509_EXTENSION_new();
932 void            X509_EXTENSION_free();
933 int             i2d_X509_EXTENSION();
934 X509_EXTENSION *d2i_X509_EXTENSION();
935
936 X509_NAME_ENTRY *X509_NAME_ENTRY_new();
937 void            X509_NAME_ENTRY_free();
938 int             i2d_X509_NAME_ENTRY();
939 X509_NAME_ENTRY *d2i_X509_NAME_ENTRY();
940
941 X509_NAME *     X509_NAME_new();
942 void            X509_NAME_free();
943 int             i2d_X509_NAME();
944 X509_NAME *     d2i_X509_NAME();
945 int             X509_NAME_set();
946
947
948 X509_CINF *     X509_CINF_new();
949 void            X509_CINF_free();
950 int             i2d_X509_CINF();
951 X509_CINF *     d2i_X509_CINF();
952
953 X509 *          X509_new();
954 void            X509_free();
955 int             i2d_X509();
956 X509 *          d2i_X509();
957
958 X509_REVOKED *  X509_REVOKED_new();
959 void            X509_REVOKED_free();
960 int             i2d_X509_REVOKED();
961 X509_REVOKED *  d2i_X509_REVOKED();
962
963 X509_CRL_INFO *X509_CRL_INFO_new();
964 void            X509_CRL_INFO_free();
965 int             i2d_X509_CRL_INFO();
966 X509_CRL_INFO *d2i_X509_CRL_INFO();
967
968 X509_CRL *      X509_CRL_new();
969 void            X509_CRL_free();
970 int             i2d_X509_CRL();
971 X509_CRL *      d2i_X509_CRL();
972
973 X509_PKEY *     X509_PKEY_new();
974 void            X509_PKEY_free();
975 int             i2d_X509_PKEY();
976 X509_PKEY *     d2i_X509_PKEY();
977
978 NETSCAPE_SPKI * NETSCAPE_SPKI_new();
979 void            NETSCAPE_SPKI_free();
980 int             i2d_NETSCAPE_SPKI();
981 NETSCAPE_SPKI * d2i_NETSCAPE_SPKI();
982
983 NETSCAPE_SPKAC *NETSCAPE_SPKAC_new();
984 void            NETSCAPE_SPKAC_free();
985 int             i2d_NETSCAPE_SPKAC();
986 NETSCAPE_SPKAC *d2i_NETSCAPE_SPKAC();
987
988 #ifdef HEADER_ENVELOPE_H
989 X509_INFO *     X509_INFO_new();
990 void            X509_INFO_free();
991 #endif
992
993 char *          X509_NAME_oneline();
994
995 int ASN1_verify();
996 int ASN1_digest();
997 int ASN1_sign();
998
999 int             X509_set_version();
1000 int             X509_set_serialNumber();
1001 ASN1_INTEGER *  X509_get_serialNumber();
1002 int             X509_set_issuer_name();
1003 X509_NAME *     X509_get_issuer_name();
1004 int             X509_set_subject_name();
1005 X509_NAME *     X509_get_subject_name();
1006 int             X509_set_notBefore();
1007 int             X509_set_notAfter();
1008 int             X509_set_pubkey();
1009 EVP_PKEY *      X509_get_pubkey();
1010 int             X509_certificate_type();
1011
1012 int             X509_REQ_set_version();
1013 int             X509_REQ_set_subject_name();
1014 int             X509_REQ_set_pubkey();
1015 EVP_PKEY *      X509_REQ_get_pubkey();
1016
1017 int             X509_check_private_key();
1018
1019 int             X509_issuer_and_serial_cmp();
1020 unsigned long   X509_issuer_and_serial_hash();
1021
1022 int             X509_issuer_name_cmp();
1023 unsigned long   X509_issuer_name_hash();
1024
1025 int             X509_subject_name_cmp();
1026 unsigned long   X509_subject_name_hash();
1027
1028 int             X509_NAME_cmp ();
1029 unsigned long   X509_NAME_hash();
1030
1031 int             X509_CRL_cmp();
1032 #ifndef NO_FP_API
1033 int             X509_print_fp();
1034 int             X509_REQ_print_fp();
1035 #endif
1036
1037 int             X509_NAME_print();
1038 int             X509_print();
1039 int             X509_REQ_print();
1040
1041 int             X509_NAME_entry_count();
1042 int             X509_NAME_get_text_by_NID();
1043 int             X509_NAME_get_text_by_OBJ();
1044
1045 int             X509_NAME_get_index_by_NID();
1046 int             X509_NAME_get_index_by_OBJ();
1047 X509_NAME_ENTRY *X509_NAME_get_entry();
1048 X509_NAME_ENTRY *X509_NAME_delete_entry();
1049 int             X509_NAME_add_entry();
1050 X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID();
1051 X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ();
1052 int             X509_NAME_ENTRY_set_object();
1053 int             X509_NAME_ENTRY_set_data();
1054 ASN1_OBJECT *   X509_NAME_ENTRY_get_object();
1055 ASN1_STRING *   X509_NAME_ENTRY_get_data();
1056
1057 int             X509v3_get_ext_count();
1058 int             X509v3_get_ext_by_NID();
1059 int             X509v3_get_ext_by_OBJ();
1060 int             X509v3_get_ext_by_critical();
1061 X509_EXTENSION *X509v3_get_ext();
1062 X509_EXTENSION *X509v3_delete_ext();
1063 STACK *         X509v3_add_ext();
1064
1065 int             X509v3_data_type_by_OBJ();
1066 int             X509v3_data_type_by_NID();
1067 int             X509v3_pack_type_by_OBJ();
1068 int             X509v3_pack_type_by_NID();
1069
1070 int             X509_get_ext_count();
1071 int             X509_get_ext_by_NID();
1072 int             X509_get_ext_by_OBJ();
1073 int             X509_get_ext_by_critical();
1074 X509_EXTENSION *X509_get_ext();
1075 X509_EXTENSION *X509_delete_ext();
1076 int             X509_add_ext();
1077
1078 int             X509_CRL_get_ext_count();
1079 int             X509_CRL_get_ext_by_NID();
1080 int             X509_CRL_get_ext_by_OBJ();
1081 int             X509_CRL_get_ext_by_critical();
1082 X509_EXTENSION *X509_CRL_get_ext();
1083 X509_EXTENSION *X509_CRL_delete_ext();
1084 int             X509_CRL_add_ext();
1085
1086 int             X509_REVOKED_get_ext_count();
1087 int             X509_REVOKED_get_ext_by_NID();
1088 int             X509_REVOKED_get_ext_by_OBJ();
1089 int             X509_REVOKED_get_ext_by_critical();
1090 X509_EXTENSION *X509_REVOKED_get_ext();
1091 X509_EXTENSION *X509_REVOKED_delete_ext();
1092 int             X509_REVOKED_add_ext();
1093
1094 X509_EXTENSION *X509_EXTENSION_create_by_NID();
1095 X509_EXTENSION *X509_EXTENSION_create_by_OBJ();
1096 int             X509_EXTENSION_set_object();
1097 int             X509_EXTENSION_set_critical();
1098 int             X509_EXTENSION_set_data();
1099 ASN1_OBJECT *   X509_EXTENSION_get_object();
1100 ASN1_OCTET_STRING *X509_EXTENSION_get_data();
1101 int             X509_EXTENSION_get_critical();
1102 ASN1_OCTET_STRING *X509v3_pack_string();
1103 ASN1_STRING *   X509v3_unpack_string();
1104
1105 int             X509_verify_cert();
1106 char *          X509_verify_cert_error_string();
1107
1108 /* lookup a cert from a X509 STACK */
1109 X509 *X509_find_by_issuer_and_serial();
1110 X509 *X509_find_by_subject();
1111
1112 #endif
1113
1114 /* BEGIN ERROR CODES */
1115 /* Error codes for the X509 functions. */
1116
1117 /* Function codes. */
1118 #define X509_F_ADD_CERT_DIR                              100
1119 #define X509_F_BY_FILE_CTRL                              101
1120 #define X509_F_DIR_CTRL                                  102
1121 #define X509_F_GET_CERT_BY_SUBJECT                       103
1122 #define X509_F_X509V3_ADD_EXT                            104
1123 #define X509_F_X509V3_ADD_EXTENSION                      105
1124 #define X509_F_X509V3_PACK_STRING                        106
1125 #define X509_F_X509V3_UNPACK_STRING                      107
1126 #define X509_F_X509_EXTENSION_CREATE_BY_NID              108
1127 #define X509_F_X509_EXTENSION_CREATE_BY_OBJ              109
1128 #define X509_F_X509_GET_PUBKEY_PARAMETERS                110
1129 #define X509_F_X509_LOAD_CERT_FILE                       111
1130 #define X509_F_X509_LOAD_CRL_FILE                        112
1131 #define X509_F_X509_NAME_ADD_ENTRY                       113
1132 #define X509_F_X509_NAME_ENTRY_CREATE_BY_NID             114
1133 #define X509_F_X509_NAME_ENTRY_SET_OBJECT                115
1134 #define X509_F_X509_NAME_ONELINE                         116
1135 #define X509_F_X509_NAME_PRINT                           117
1136 #define X509_F_X509_PRINT_FP                             118
1137 #define X509_F_X509_PUBKEY_GET                           119
1138 #define X509_F_X509_PUBKEY_SET                           120
1139 #define X509_F_X509_REQ_PRINT                            121
1140 #define X509_F_X509_REQ_PRINT_FP                         122
1141 #define X509_F_X509_REQ_TO_X509                          123
1142 #define X509_F_X509_STORE_ADD_CERT                       124
1143 #define X509_F_X509_STORE_ADD_CRL                        125
1144 #define X509_F_X509_TO_X509_REQ                          126
1145 #define X509_F_X509_VERIFY_CERT                          127
1146
1147 /* Reason codes. */
1148 #define X509_R_BAD_X509_FILETYPE                         100
1149 #define X509_R_CERT_ALREADY_IN_HASH_TABLE                101
1150 #define X509_R_ERR_ASN1_LIB                              102
1151 #define X509_R_LOADING_CERT_DIR                          103
1152 #define X509_R_LOADING_DEFAULTS                          104
1153 #define X509_R_NO_CERT_SET_FOR_US_TO_VERIFY              105
1154 #define X509_R_SHOULD_RETRY                              106
1155 #define X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN        107
1156 #define X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY            108
1157 #define X509_R_UNKNOWN_NID                               109
1158 #define X509_R_UNKNOWN_STRING_TYPE                       110
1159 #define X509_R_UNSUPPORTED_ALGORITHM                     111
1160 #define X509_R_WRONG_LOOKUP_TYPE                         112
1161  
1162 #ifdef  __cplusplus
1163 }
1164 #endif
1165 #endif
1166