build - use libressl md5.h for kernel
[dragonfly.git] / crypto / libressl / include / openssl / x509.h
1 /* $OpenBSD: x509.h,v 1.22 2015/02/11 02:17:59 jsing Exp $ */
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  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
60  * ECDH support in OpenSSL originally developed by 
61  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
62  */
63
64 #ifndef HEADER_X509_H
65 #define HEADER_X509_H
66
67 #include <openssl/opensslconf.h>
68
69 #ifndef OPENSSL_NO_BUFFER
70 #include <openssl/buffer.h>
71 #endif
72 #ifndef OPENSSL_NO_EVP
73 #include <openssl/evp.h>
74 #endif
75 #ifndef OPENSSL_NO_BIO
76 #include <openssl/bio.h>
77 #endif
78 #include <openssl/stack.h>
79 #include <openssl/asn1.h>
80 #include <openssl/safestack.h>
81
82 #ifndef OPENSSL_NO_EC
83 #include <openssl/ec.h>
84 #endif
85
86 #ifndef OPENSSL_NO_ECDSA
87 #include <openssl/ecdsa.h>
88 #endif
89
90 #ifndef OPENSSL_NO_ECDH
91 #include <openssl/ecdh.h>
92 #endif
93
94 #ifndef OPENSSL_NO_DEPRECATED
95 #ifndef OPENSSL_NO_RSA
96 #include <openssl/rsa.h>
97 #endif
98 #ifndef OPENSSL_NO_DSA
99 #include <openssl/dsa.h>
100 #endif
101 #ifndef OPENSSL_NO_DH
102 #include <openssl/dh.h>
103 #endif
104 #endif
105
106 #ifndef OPENSSL_NO_SHA
107 #include <openssl/sha.h>
108 #endif
109 #include <openssl/ossl_typ.h>
110
111 #ifdef  __cplusplus
112 extern "C" {
113 #endif
114
115 #if defined(_WIN32)
116 #ifndef LIBRESSL_INTERNAL
117 #ifdef _MSC_VER
118 #pragma message("Warning, overriding WinCrypt defines")
119 #else
120 #warning overriding WinCrypt defines
121 #endif
122 #endif
123 #undef X509_NAME
124 #undef X509_CERT_PAIR
125 #undef X509_EXTENSIONS
126 #endif
127
128 #define X509_FILETYPE_PEM       1
129 #define X509_FILETYPE_ASN1      2
130 #define X509_FILETYPE_DEFAULT   3
131
132 #define X509v3_KU_DIGITAL_SIGNATURE     0x0080
133 #define X509v3_KU_NON_REPUDIATION       0x0040
134 #define X509v3_KU_KEY_ENCIPHERMENT      0x0020
135 #define X509v3_KU_DATA_ENCIPHERMENT     0x0010
136 #define X509v3_KU_KEY_AGREEMENT         0x0008
137 #define X509v3_KU_KEY_CERT_SIGN         0x0004
138 #define X509v3_KU_CRL_SIGN              0x0002
139 #define X509v3_KU_ENCIPHER_ONLY         0x0001
140 #define X509v3_KU_DECIPHER_ONLY         0x8000
141 #define X509v3_KU_UNDEF                 0xffff
142
143 typedef struct X509_objects_st
144         {
145         int nid;
146         int (*a2i)(void);
147         int (*i2a)(void);
148         } X509_OBJECTS;
149
150 struct X509_algor_st
151         {
152         ASN1_OBJECT *algorithm;
153         ASN1_TYPE *parameter;
154         } /* X509_ALGOR */;
155
156 DECLARE_ASN1_SET_OF(X509_ALGOR)
157
158 typedef STACK_OF(X509_ALGOR) X509_ALGORS;
159
160 typedef struct X509_val_st
161         {
162         ASN1_TIME *notBefore;
163         ASN1_TIME *notAfter;
164         } X509_VAL;
165
166 struct X509_pubkey_st
167         {
168         X509_ALGOR *algor;
169         ASN1_BIT_STRING *public_key;
170         EVP_PKEY *pkey;
171         };
172
173 typedef struct X509_sig_st
174         {
175         X509_ALGOR *algor;
176         ASN1_OCTET_STRING *digest;
177         } X509_SIG;
178
179 typedef struct X509_name_entry_st
180         {
181         ASN1_OBJECT *object;
182         ASN1_STRING *value;
183         int set;
184         int size;       /* temp variable */
185         } X509_NAME_ENTRY;
186
187 DECLARE_STACK_OF(X509_NAME_ENTRY)
188 DECLARE_ASN1_SET_OF(X509_NAME_ENTRY)
189
190 /* we always keep X509_NAMEs in 2 forms. */
191 struct X509_name_st
192         {
193         STACK_OF(X509_NAME_ENTRY) *entries;
194         int modified;   /* true if 'bytes' needs to be built */
195 #ifndef OPENSSL_NO_BUFFER
196         BUF_MEM *bytes;
197 #else
198         char *bytes;
199 #endif
200 /*      unsigned long hash; Keep the hash around for lookups */
201         unsigned char *canon_enc;
202         int canon_enclen;
203         } /* X509_NAME */;
204
205 DECLARE_STACK_OF(X509_NAME)
206
207 #define X509_EX_V_NETSCAPE_HACK         0x8000
208 #define X509_EX_V_INIT                  0x0001
209 typedef struct X509_extension_st
210         {
211         ASN1_OBJECT *object;
212         ASN1_BOOLEAN critical;
213         ASN1_OCTET_STRING *value;
214         } X509_EXTENSION;
215
216 typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS;
217
218 DECLARE_STACK_OF(X509_EXTENSION)
219 DECLARE_ASN1_SET_OF(X509_EXTENSION)
220
221 /* a sequence of these are used */
222 typedef struct x509_attributes_st
223         {
224         ASN1_OBJECT *object;
225         int single; /* 0 for a set, 1 for a single item (which is wrong) */
226         union   {
227                 char            *ptr;
228 /* 0 */         STACK_OF(ASN1_TYPE) *set;
229 /* 1 */         ASN1_TYPE       *single;
230                 } value;
231         } X509_ATTRIBUTE;
232
233 DECLARE_STACK_OF(X509_ATTRIBUTE)
234 DECLARE_ASN1_SET_OF(X509_ATTRIBUTE)
235
236
237 typedef struct X509_req_info_st
238         {
239         ASN1_ENCODING enc;
240         ASN1_INTEGER *version;
241         X509_NAME *subject;
242         X509_PUBKEY *pubkey;
243         /*  d=2 hl=2 l=  0 cons: cont: 00 */
244         STACK_OF(X509_ATTRIBUTE) *attributes; /* [ 0 ] */
245         } X509_REQ_INFO;
246
247 typedef struct X509_req_st
248         {
249         X509_REQ_INFO *req_info;
250         X509_ALGOR *sig_alg;
251         ASN1_BIT_STRING *signature;
252         int references;
253         } X509_REQ;
254
255 typedef struct x509_cinf_st
256         {
257         ASN1_INTEGER *version;          /* [ 0 ] default of v1 */
258         ASN1_INTEGER *serialNumber;
259         X509_ALGOR *signature;
260         X509_NAME *issuer;
261         X509_VAL *validity;
262         X509_NAME *subject;
263         X509_PUBKEY *key;
264         ASN1_BIT_STRING *issuerUID;             /* [ 1 ] optional in v2 */
265         ASN1_BIT_STRING *subjectUID;            /* [ 2 ] optional in v2 */
266         STACK_OF(X509_EXTENSION) *extensions;   /* [ 3 ] optional in v3 */
267         ASN1_ENCODING enc;
268         } X509_CINF;
269
270 /* This stuff is certificate "auxiliary info"
271  * it contains details which are useful in certificate
272  * stores and databases. When used this is tagged onto
273  * the end of the certificate itself
274  */
275
276 typedef struct x509_cert_aux_st
277         {
278         STACK_OF(ASN1_OBJECT) *trust;           /* trusted uses */
279         STACK_OF(ASN1_OBJECT) *reject;          /* rejected uses */
280         ASN1_UTF8STRING *alias;                 /* "friendly name" */
281         ASN1_OCTET_STRING *keyid;               /* key id of private key */
282         STACK_OF(X509_ALGOR) *other;            /* other unspecified info */
283         } X509_CERT_AUX;
284
285 struct x509_st
286         {
287         X509_CINF *cert_info;
288         X509_ALGOR *sig_alg;
289         ASN1_BIT_STRING *signature;
290         int valid;
291         int references;
292         char *name;
293         CRYPTO_EX_DATA ex_data;
294         /* These contain copies of various extension values */
295         long ex_pathlen;
296         long ex_pcpathlen;
297         unsigned long ex_flags;
298         unsigned long ex_kusage;
299         unsigned long ex_xkusage;
300         unsigned long ex_nscert;
301         ASN1_OCTET_STRING *skid;
302         AUTHORITY_KEYID *akid;
303         X509_POLICY_CACHE *policy_cache;
304         STACK_OF(DIST_POINT) *crldp;
305         STACK_OF(GENERAL_NAME) *altname;
306         NAME_CONSTRAINTS *nc;
307 #ifndef OPENSSL_NO_SHA
308         unsigned char sha1_hash[SHA_DIGEST_LENGTH];
309 #endif
310         X509_CERT_AUX *aux;
311         } /* X509 */;
312
313 DECLARE_STACK_OF(X509)
314 DECLARE_ASN1_SET_OF(X509)
315
316 /* This is used for a table of trust checking functions */
317
318 typedef struct x509_trust_st {
319         int trust;
320         int flags;
321         int (*check_trust)(struct x509_trust_st *, X509 *, int);
322         char *name;
323         int arg1;
324         void *arg2;
325 } X509_TRUST;
326
327 DECLARE_STACK_OF(X509_TRUST)
328
329 typedef struct x509_cert_pair_st {
330         X509 *forward;
331         X509 *reverse;
332 } X509_CERT_PAIR;
333
334 /* standard trust ids */
335
336 #define X509_TRUST_DEFAULT      -1      /* Only valid in purpose settings */
337
338 #define X509_TRUST_COMPAT       1
339 #define X509_TRUST_SSL_CLIENT   2
340 #define X509_TRUST_SSL_SERVER   3
341 #define X509_TRUST_EMAIL        4
342 #define X509_TRUST_OBJECT_SIGN  5
343 #define X509_TRUST_OCSP_SIGN    6
344 #define X509_TRUST_OCSP_REQUEST 7
345 #define X509_TRUST_TSA          8
346
347 /* Keep these up to date! */
348 #define X509_TRUST_MIN          1
349 #define X509_TRUST_MAX          8
350
351
352 /* trust_flags values */
353 #define X509_TRUST_DYNAMIC      1
354 #define X509_TRUST_DYNAMIC_NAME 2
355
356 /* check_trust return codes */
357
358 #define X509_TRUST_TRUSTED      1
359 #define X509_TRUST_REJECTED     2
360 #define X509_TRUST_UNTRUSTED    3
361
362 /* Flags for X509_print_ex() */
363
364 #define X509_FLAG_COMPAT                0
365 #define X509_FLAG_NO_HEADER             1L
366 #define X509_FLAG_NO_VERSION            (1L << 1)
367 #define X509_FLAG_NO_SERIAL             (1L << 2)
368 #define X509_FLAG_NO_SIGNAME            (1L << 3)
369 #define X509_FLAG_NO_ISSUER             (1L << 4)
370 #define X509_FLAG_NO_VALIDITY           (1L << 5)
371 #define X509_FLAG_NO_SUBJECT            (1L << 6)
372 #define X509_FLAG_NO_PUBKEY             (1L << 7)
373 #define X509_FLAG_NO_EXTENSIONS         (1L << 8)
374 #define X509_FLAG_NO_SIGDUMP            (1L << 9)
375 #define X509_FLAG_NO_AUX                (1L << 10)
376 #define X509_FLAG_NO_ATTRIBUTES         (1L << 11)
377
378 /* Flags specific to X509_NAME_print_ex() */    
379
380 /* The field separator information */
381
382 #define XN_FLAG_SEP_MASK        (0xf << 16)
383
384 #define XN_FLAG_COMPAT          0               /* Traditional SSLeay: use old X509_NAME_print */
385 #define XN_FLAG_SEP_COMMA_PLUS  (1 << 16)       /* RFC2253 ,+ */
386 #define XN_FLAG_SEP_CPLUS_SPC   (2 << 16)       /* ,+ spaced: more readable */
387 #define XN_FLAG_SEP_SPLUS_SPC   (3 << 16)       /* ;+ spaced */
388 #define XN_FLAG_SEP_MULTILINE   (4 << 16)       /* One line per field */
389
390 #define XN_FLAG_DN_REV          (1 << 20)       /* Reverse DN order */
391
392 /* How the field name is shown */
393
394 #define XN_FLAG_FN_MASK         (0x3 << 21)
395
396 #define XN_FLAG_FN_SN           0               /* Object short name */
397 #define XN_FLAG_FN_LN           (1 << 21)       /* Object long name */
398 #define XN_FLAG_FN_OID          (2 << 21)       /* Always use OIDs */
399 #define XN_FLAG_FN_NONE         (3 << 21)       /* No field names */
400
401 #define XN_FLAG_SPC_EQ          (1 << 23)       /* Put spaces round '=' */
402
403 /* This determines if we dump fields we don't recognise:
404  * RFC2253 requires this.
405  */
406
407 #define XN_FLAG_DUMP_UNKNOWN_FIELDS (1 << 24)
408
409 #define XN_FLAG_FN_ALIGN        (1 << 25)       /* Align field names to 20 characters */
410
411 /* Complete set of RFC2253 flags */
412
413 #define XN_FLAG_RFC2253 (ASN1_STRFLGS_RFC2253 | \
414                         XN_FLAG_SEP_COMMA_PLUS | \
415                         XN_FLAG_DN_REV | \
416                         XN_FLAG_FN_SN | \
417                         XN_FLAG_DUMP_UNKNOWN_FIELDS)
418
419 /* readable oneline form */
420
421 #define XN_FLAG_ONELINE (ASN1_STRFLGS_RFC2253 | \
422                         ASN1_STRFLGS_ESC_QUOTE | \
423                         XN_FLAG_SEP_CPLUS_SPC | \
424                         XN_FLAG_SPC_EQ | \
425                         XN_FLAG_FN_SN)
426
427 /* readable multiline form */
428
429 #define XN_FLAG_MULTILINE (ASN1_STRFLGS_ESC_CTRL | \
430                         ASN1_STRFLGS_ESC_MSB | \
431                         XN_FLAG_SEP_MULTILINE | \
432                         XN_FLAG_SPC_EQ | \
433                         XN_FLAG_FN_LN | \
434                         XN_FLAG_FN_ALIGN)
435
436 struct x509_revoked_st
437         {
438         ASN1_INTEGER *serialNumber;
439         ASN1_TIME *revocationDate;
440         STACK_OF(X509_EXTENSION) /* optional */ *extensions;
441         /* Set up if indirect CRL */
442         STACK_OF(GENERAL_NAME) *issuer;
443         /* Revocation reason */
444         int reason;
445         int sequence; /* load sequence */
446         };
447
448 DECLARE_STACK_OF(X509_REVOKED)
449 DECLARE_ASN1_SET_OF(X509_REVOKED)
450
451 typedef struct X509_crl_info_st
452         {
453         ASN1_INTEGER *version;
454         X509_ALGOR *sig_alg;
455         X509_NAME *issuer;
456         ASN1_TIME *lastUpdate;
457         ASN1_TIME *nextUpdate;
458         STACK_OF(X509_REVOKED) *revoked;
459         STACK_OF(X509_EXTENSION) /* [0] */ *extensions;
460         ASN1_ENCODING enc;
461         } X509_CRL_INFO;
462
463 struct X509_crl_st
464         {
465         /* actual signature */
466         X509_CRL_INFO *crl;
467         X509_ALGOR *sig_alg;
468         ASN1_BIT_STRING *signature;
469         int references;
470         int flags;
471         /* Copies of various extensions */
472         AUTHORITY_KEYID *akid;
473         ISSUING_DIST_POINT *idp;
474         /* Convenient breakdown of IDP */
475         int idp_flags;
476         int idp_reasons;
477         /* CRL and base CRL numbers for delta processing */
478         ASN1_INTEGER *crl_number;
479         ASN1_INTEGER *base_crl_number;
480 #ifndef OPENSSL_NO_SHA
481         unsigned char sha1_hash[SHA_DIGEST_LENGTH];
482 #endif
483         STACK_OF(GENERAL_NAMES) *issuers;
484         const X509_CRL_METHOD *meth;
485         void *meth_data;
486         } /* X509_CRL */;
487
488 DECLARE_STACK_OF(X509_CRL)
489 DECLARE_ASN1_SET_OF(X509_CRL)
490
491 typedef struct private_key_st
492         {
493         int version;
494         /* The PKCS#8 data types */
495         X509_ALGOR *enc_algor;
496         ASN1_OCTET_STRING *enc_pkey;    /* encrypted pub key */
497
498         /* When decrypted, the following will not be NULL */
499         EVP_PKEY *dec_pkey;
500
501         /* used to encrypt and decrypt */
502         int key_length;
503         char *key_data;
504         int key_free;   /* true if we should auto free key_data */
505
506         /* expanded version of 'enc_algor' */
507         EVP_CIPHER_INFO cipher;
508
509         int references;
510         } X509_PKEY;
511
512 #ifndef OPENSSL_NO_EVP
513 typedef struct X509_info_st
514         {
515         X509 *x509;
516         X509_CRL *crl;
517         X509_PKEY *x_pkey;
518
519         EVP_CIPHER_INFO enc_cipher;
520         int enc_len;
521         char *enc_data;
522
523         int references;
524         } X509_INFO;
525
526 DECLARE_STACK_OF(X509_INFO)
527 #endif
528
529 /* The next 2 structures and their 8 routines were sent to me by
530  * Pat Richard <patr@x509.com> and are used to manipulate
531  * Netscapes spki structures - useful if you are writing a CA web page
532  */
533 typedef struct Netscape_spkac_st
534         {
535         X509_PUBKEY *pubkey;
536         ASN1_IA5STRING *challenge;      /* challenge sent in atlas >= PR2 */
537         } NETSCAPE_SPKAC;
538
539 typedef struct Netscape_spki_st
540         {
541         NETSCAPE_SPKAC *spkac;  /* signed public key and challenge */
542         X509_ALGOR *sig_algor;
543         ASN1_BIT_STRING *signature;
544         } NETSCAPE_SPKI;
545
546 /* Netscape certificate sequence structure */
547 typedef struct Netscape_certificate_sequence
548         {
549         ASN1_OBJECT *type;
550         STACK_OF(X509) *certs;
551         } NETSCAPE_CERT_SEQUENCE;
552
553 /* Unused (and iv length is wrong)
554 typedef struct CBCParameter_st
555         {
556         unsigned char iv[8];
557         } CBC_PARAM;
558 */
559
560 /* Password based encryption structure */
561
562 typedef struct PBEPARAM_st {
563 ASN1_OCTET_STRING *salt;
564 ASN1_INTEGER *iter;
565 } PBEPARAM;
566
567 /* Password based encryption V2 structures */
568
569 typedef struct PBE2PARAM_st {
570 X509_ALGOR *keyfunc;
571 X509_ALGOR *encryption;
572 } PBE2PARAM;
573
574 typedef struct PBKDF2PARAM_st {
575 ASN1_TYPE *salt;        /* Usually OCTET STRING but could be anything */
576 ASN1_INTEGER *iter;
577 ASN1_INTEGER *keylength;
578 X509_ALGOR *prf;
579 } PBKDF2PARAM;
580
581
582 /* PKCS#8 private key info structure */
583
584 struct pkcs8_priv_key_info_st
585         {
586         int broken;     /* Flag for various broken formats */
587 #define PKCS8_OK                0
588 #define PKCS8_NO_OCTET          1
589 #define PKCS8_EMBEDDED_PARAM    2
590 #define PKCS8_NS_DB             3
591 #define PKCS8_NEG_PRIVKEY       4
592         ASN1_INTEGER *version;
593         X509_ALGOR *pkeyalg;
594         ASN1_TYPE *pkey; /* Should be OCTET STRING but some are broken */
595         STACK_OF(X509_ATTRIBUTE) *attributes;
596         };
597
598 #ifdef  __cplusplus
599 }
600 #endif
601
602 #include <openssl/x509_vfy.h>
603 #include <openssl/pkcs7.h>
604
605 #ifdef  __cplusplus
606 extern "C" {
607 #endif
608
609 #define X509_EXT_PACK_UNKNOWN   1
610 #define X509_EXT_PACK_STRING    2
611
612 #define         X509_get_version(x) ASN1_INTEGER_get((x)->cert_info->version)
613 /* #define      X509_get_serialNumber(x) ((x)->cert_info->serialNumber) */
614 #define         X509_get_notBefore(x) ((x)->cert_info->validity->notBefore)
615 #define         X509_get_notAfter(x) ((x)->cert_info->validity->notAfter)
616 #define         X509_extract_key(x)     X509_get_pubkey(x) /*****/
617 #define         X509_REQ_get_version(x) ASN1_INTEGER_get((x)->req_info->version)
618 #define         X509_REQ_get_subject_name(x) ((x)->req_info->subject)
619 #define         X509_REQ_extract_key(a) X509_REQ_get_pubkey(a)
620 #define         X509_name_cmp(a,b)      X509_NAME_cmp((a),(b))
621 #define         X509_get_signature_type(x) EVP_PKEY_type(OBJ_obj2nid((x)->sig_alg->algorithm))
622
623 #define         X509_CRL_get_version(x) ASN1_INTEGER_get((x)->crl->version)
624 #define         X509_CRL_get_lastUpdate(x) ((x)->crl->lastUpdate)
625 #define         X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate)
626 #define         X509_CRL_get_issuer(x) ((x)->crl->issuer)
627 #define         X509_CRL_get_REVOKED(x) ((x)->crl->revoked)
628
629 void X509_CRL_set_default_method(const X509_CRL_METHOD *meth);
630 X509_CRL_METHOD *X509_CRL_METHOD_new(
631         int (*crl_init)(X509_CRL *crl),
632         int (*crl_free)(X509_CRL *crl),
633         int (*crl_lookup)(X509_CRL *crl, X509_REVOKED **ret,
634                                 ASN1_INTEGER *ser, X509_NAME *issuer),
635         int (*crl_verify)(X509_CRL *crl, EVP_PKEY *pk));
636 void X509_CRL_METHOD_free(X509_CRL_METHOD *m);
637
638 void X509_CRL_set_meth_data(X509_CRL *crl, void *dat);
639 void *X509_CRL_get_meth_data(X509_CRL *crl);
640
641 /* This one is only used so that a binary form can output, as in
642  * i2d_X509_NAME(X509_get_X509_PUBKEY(x),&buf) */
643 #define         X509_get_X509_PUBKEY(x) ((x)->cert_info->key)
644
645
646 const char *X509_verify_cert_error_string(long n);
647
648 #ifndef OPENSSL_NO_EVP
649 int X509_verify(X509 *a, EVP_PKEY *r);
650
651 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
652 int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r);
653 int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r);
654
655 NETSCAPE_SPKI * NETSCAPE_SPKI_b64_decode(const char *str, int len);
656 char * NETSCAPE_SPKI_b64_encode(NETSCAPE_SPKI *x);
657 EVP_PKEY *NETSCAPE_SPKI_get_pubkey(NETSCAPE_SPKI *x);
658 int NETSCAPE_SPKI_set_pubkey(NETSCAPE_SPKI *x, EVP_PKEY *pkey);
659
660 int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki);
661
662 int X509_signature_dump(BIO *bp,const ASN1_STRING *sig, int indent);
663 int X509_signature_print(BIO *bp,X509_ALGOR *alg, ASN1_STRING *sig);
664
665 int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md);
666 int X509_sign_ctx(X509 *x, EVP_MD_CTX *ctx);
667 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
668 int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
669 int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md);
670 int X509_CRL_sign_ctx(X509_CRL *x, EVP_MD_CTX *ctx);
671 int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *x, EVP_PKEY *pkey, const EVP_MD *md);
672
673 int X509_pubkey_digest(const X509 *data,const EVP_MD *type,
674                 unsigned char *md, unsigned int *len);
675 int X509_digest(const X509 *data,const EVP_MD *type,
676                 unsigned char *md, unsigned int *len);
677 int X509_CRL_digest(const X509_CRL *data,const EVP_MD *type,
678                 unsigned char *md, unsigned int *len);
679 int X509_REQ_digest(const X509_REQ *data,const EVP_MD *type,
680                 unsigned char *md, unsigned int *len);
681 int X509_NAME_digest(const X509_NAME *data,const EVP_MD *type,
682                 unsigned char *md, unsigned int *len);
683 #endif
684
685 X509 *d2i_X509_fp(FILE *fp, X509 **x509);
686 int i2d_X509_fp(FILE *fp,X509 *x509);
687 X509_CRL *d2i_X509_CRL_fp(FILE *fp,X509_CRL **crl);
688 int i2d_X509_CRL_fp(FILE *fp,X509_CRL *crl);
689 X509_REQ *d2i_X509_REQ_fp(FILE *fp,X509_REQ **req);
690 int i2d_X509_REQ_fp(FILE *fp,X509_REQ *req);
691 #ifndef OPENSSL_NO_RSA
692 RSA *d2i_RSAPrivateKey_fp(FILE *fp,RSA **rsa);
693 int i2d_RSAPrivateKey_fp(FILE *fp,RSA *rsa);
694 RSA *d2i_RSAPublicKey_fp(FILE *fp,RSA **rsa);
695 int i2d_RSAPublicKey_fp(FILE *fp,RSA *rsa);
696 RSA *d2i_RSA_PUBKEY_fp(FILE *fp,RSA **rsa);
697 int i2d_RSA_PUBKEY_fp(FILE *fp,RSA *rsa);
698 #endif
699 #ifndef OPENSSL_NO_DSA
700 DSA *d2i_DSA_PUBKEY_fp(FILE *fp, DSA **dsa);
701 int i2d_DSA_PUBKEY_fp(FILE *fp, DSA *dsa);
702 int i2d_DSAPrivateKey_fp(FILE *fp, DSA *dsa);
703 #endif
704 #ifndef OPENSSL_NO_EC
705 EC_KEY *d2i_EC_PUBKEY_fp(FILE *fp, EC_KEY **eckey);
706 int   i2d_EC_PUBKEY_fp(FILE *fp, EC_KEY *eckey);
707 EC_KEY *d2i_ECPrivateKey_fp(FILE *fp, EC_KEY **eckey);
708 int   i2d_ECPrivateKey_fp(FILE *fp, EC_KEY *eckey);
709 #endif
710 X509_SIG *d2i_PKCS8_fp(FILE *fp,X509_SIG **p8);
711 int i2d_PKCS8_fp(FILE *fp,X509_SIG *p8);
712 PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_fp(FILE *fp,
713                                                 PKCS8_PRIV_KEY_INFO **p8inf);
714 int i2d_PKCS8_PRIV_KEY_INFO_fp(FILE *fp,PKCS8_PRIV_KEY_INFO *p8inf);
715 int i2d_PKCS8PrivateKeyInfo_fp(FILE *fp, EVP_PKEY *key);
716 int i2d_PrivateKey_fp(FILE *fp, EVP_PKEY *pkey);
717 EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a);
718 int i2d_PUBKEY_fp(FILE *fp, EVP_PKEY *pkey);
719 EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a);
720
721 #ifndef OPENSSL_NO_BIO
722 X509 *d2i_X509_bio(BIO *bp,X509 **x509);
723 int i2d_X509_bio(BIO *bp,X509 *x509);
724 X509_CRL *d2i_X509_CRL_bio(BIO *bp,X509_CRL **crl);
725 int i2d_X509_CRL_bio(BIO *bp,X509_CRL *crl);
726 X509_REQ *d2i_X509_REQ_bio(BIO *bp,X509_REQ **req);
727 int i2d_X509_REQ_bio(BIO *bp,X509_REQ *req);
728 #ifndef OPENSSL_NO_RSA
729 RSA *d2i_RSAPrivateKey_bio(BIO *bp,RSA **rsa);
730 int i2d_RSAPrivateKey_bio(BIO *bp,RSA *rsa);
731 RSA *d2i_RSAPublicKey_bio(BIO *bp,RSA **rsa);
732 int i2d_RSAPublicKey_bio(BIO *bp,RSA *rsa);
733 RSA *d2i_RSA_PUBKEY_bio(BIO *bp,RSA **rsa);
734 int i2d_RSA_PUBKEY_bio(BIO *bp,RSA *rsa);
735 #endif
736 #ifndef OPENSSL_NO_DSA
737 DSA *d2i_DSA_PUBKEY_bio(BIO *bp, DSA **dsa);
738 int i2d_DSA_PUBKEY_bio(BIO *bp, DSA *dsa);
739 DSA *d2i_DSAPrivateKey_bio(BIO *bp, DSA **dsa);
740 int i2d_DSAPrivateKey_bio(BIO *bp, DSA *dsa);
741 #endif
742 #ifndef OPENSSL_NO_EC
743 EC_KEY *d2i_EC_PUBKEY_bio(BIO *bp, EC_KEY **eckey);
744 int   i2d_EC_PUBKEY_bio(BIO *bp, EC_KEY *eckey);
745 EC_KEY *d2i_ECPrivateKey_bio(BIO *bp, EC_KEY **eckey);
746 int   i2d_ECPrivateKey_bio(BIO *bp, EC_KEY *eckey);
747 #endif
748 X509_SIG *d2i_PKCS8_bio(BIO *bp,X509_SIG **p8);
749 int i2d_PKCS8_bio(BIO *bp,X509_SIG *p8);
750 PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_bio(BIO *bp,
751                                                 PKCS8_PRIV_KEY_INFO **p8inf);
752 int i2d_PKCS8_PRIV_KEY_INFO_bio(BIO *bp,PKCS8_PRIV_KEY_INFO *p8inf);
753 int i2d_PKCS8PrivateKeyInfo_bio(BIO *bp, EVP_PKEY *key);
754 int i2d_PrivateKey_bio(BIO *bp, EVP_PKEY *pkey);
755 EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a);
756 int i2d_PUBKEY_bio(BIO *bp, EVP_PKEY *pkey);
757 EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a);
758 #endif
759
760 X509 *X509_dup(X509 *x509);
761 X509_ATTRIBUTE *X509_ATTRIBUTE_dup(X509_ATTRIBUTE *xa);
762 X509_EXTENSION *X509_EXTENSION_dup(X509_EXTENSION *ex);
763 X509_CRL *X509_CRL_dup(X509_CRL *crl);
764 X509_REQ *X509_REQ_dup(X509_REQ *req);
765 X509_ALGOR *X509_ALGOR_dup(X509_ALGOR *xn);
766 int X509_ALGOR_set0(X509_ALGOR *alg, ASN1_OBJECT *aobj, int ptype, void *pval);
767 void X509_ALGOR_get0(ASN1_OBJECT **paobj, int *pptype, void **ppval,
768                                                 X509_ALGOR *algor);
769 void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md);
770 int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b);
771
772 X509_NAME *X509_NAME_dup(X509_NAME *xn);
773 X509_NAME_ENTRY *X509_NAME_ENTRY_dup(X509_NAME_ENTRY *ne);
774
775 int             X509_cmp_time(const ASN1_TIME *s, time_t *t);
776 int             X509_cmp_current_time(const ASN1_TIME *s);
777 ASN1_TIME *     X509_time_adj(ASN1_TIME *s, long adj, time_t *t);
778 ASN1_TIME *     X509_time_adj_ex(ASN1_TIME *s,
779                                 int offset_day, long offset_sec, time_t *t);
780 ASN1_TIME *     X509_gmtime_adj(ASN1_TIME *s, long adj);
781
782 const char *    X509_get_default_cert_area(void );
783 const char *    X509_get_default_cert_dir(void );
784 const char *    X509_get_default_cert_file(void );
785 const char *    X509_get_default_cert_dir_env(void );
786 const char *    X509_get_default_cert_file_env(void );
787 const char *    X509_get_default_private_dir(void );
788
789 X509_REQ *      X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md);
790 X509 *          X509_REQ_to_X509(X509_REQ *r, int days,EVP_PKEY *pkey);
791
792 DECLARE_ASN1_FUNCTIONS(X509_ALGOR)
793 DECLARE_ASN1_ENCODE_FUNCTIONS(X509_ALGORS, X509_ALGORS, X509_ALGORS)
794 DECLARE_ASN1_FUNCTIONS(X509_VAL)
795
796 DECLARE_ASN1_FUNCTIONS(X509_PUBKEY)
797
798 int             X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
799 EVP_PKEY *      X509_PUBKEY_get(X509_PUBKEY *key);
800 int             X509_get_pubkey_parameters(EVP_PKEY *pkey,
801                                            STACK_OF(X509) *chain);
802 int             i2d_PUBKEY(EVP_PKEY *a,unsigned char **pp);
803 EVP_PKEY *      d2i_PUBKEY(EVP_PKEY **a,const unsigned char **pp,
804                         long length);
805 #ifndef OPENSSL_NO_RSA
806 int             i2d_RSA_PUBKEY(RSA *a,unsigned char **pp);
807 RSA *           d2i_RSA_PUBKEY(RSA **a,const unsigned char **pp,
808                         long length);
809 #endif
810 #ifndef OPENSSL_NO_DSA
811 int             i2d_DSA_PUBKEY(DSA *a,unsigned char **pp);
812 DSA *           d2i_DSA_PUBKEY(DSA **a,const unsigned char **pp,
813                         long length);
814 #endif
815 #ifndef OPENSSL_NO_EC
816 int             i2d_EC_PUBKEY(EC_KEY *a, unsigned char **pp);
817 EC_KEY          *d2i_EC_PUBKEY(EC_KEY **a, const unsigned char **pp,
818                         long length);
819 #endif
820
821 DECLARE_ASN1_FUNCTIONS(X509_SIG)
822 DECLARE_ASN1_FUNCTIONS(X509_REQ_INFO)
823 DECLARE_ASN1_FUNCTIONS(X509_REQ)
824
825 DECLARE_ASN1_FUNCTIONS(X509_ATTRIBUTE)
826 X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype, void *value);
827
828 DECLARE_ASN1_FUNCTIONS(X509_EXTENSION)
829 DECLARE_ASN1_ENCODE_FUNCTIONS(X509_EXTENSIONS, X509_EXTENSIONS, X509_EXTENSIONS)
830
831 DECLARE_ASN1_FUNCTIONS(X509_NAME_ENTRY)
832
833 DECLARE_ASN1_FUNCTIONS(X509_NAME)
834
835 int             X509_NAME_set(X509_NAME **xn, X509_NAME *name);
836
837 DECLARE_ASN1_FUNCTIONS(X509_CINF)
838
839 DECLARE_ASN1_FUNCTIONS(X509)
840 DECLARE_ASN1_FUNCTIONS(X509_CERT_AUX)
841
842 DECLARE_ASN1_FUNCTIONS(X509_CERT_PAIR)
843
844 int X509_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
845              CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func);
846 int X509_set_ex_data(X509 *r, int idx, void *arg);
847 void *X509_get_ex_data(X509 *r, int idx);
848 int             i2d_X509_AUX(X509 *a,unsigned char **pp);
849 X509 *          d2i_X509_AUX(X509 **a,const unsigned char **pp,long length);
850
851 int X509_alias_set1(X509 *x, unsigned char *name, int len);
852 int X509_keyid_set1(X509 *x, unsigned char *id, int len);
853 unsigned char * X509_alias_get0(X509 *x, int *len);
854 unsigned char * X509_keyid_get0(X509 *x, int *len);
855 int (*X509_TRUST_set_default(int (*trust)(int , X509 *, int)))(int, X509 *, int);
856 int X509_TRUST_set(int *t, int trust);
857 int X509_add1_trust_object(X509 *x, ASN1_OBJECT *obj);
858 int X509_add1_reject_object(X509 *x, ASN1_OBJECT *obj);
859 void X509_trust_clear(X509 *x);
860 void X509_reject_clear(X509 *x);
861
862 DECLARE_ASN1_FUNCTIONS(X509_REVOKED)
863 DECLARE_ASN1_FUNCTIONS(X509_CRL_INFO)
864 DECLARE_ASN1_FUNCTIONS(X509_CRL)
865
866 int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev);
867 int X509_CRL_get0_by_serial(X509_CRL *crl,
868                 X509_REVOKED **ret, ASN1_INTEGER *serial);
869 int X509_CRL_get0_by_cert(X509_CRL *crl, X509_REVOKED **ret, X509 *x);
870
871 X509_PKEY *     X509_PKEY_new(void );
872 void            X509_PKEY_free(X509_PKEY *a);
873
874 DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKI)
875 DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKAC)
876 DECLARE_ASN1_FUNCTIONS(NETSCAPE_CERT_SEQUENCE)
877
878 #ifndef OPENSSL_NO_EVP
879 X509_INFO *     X509_INFO_new(void);
880 void            X509_INFO_free(X509_INFO *a);
881 char *          X509_NAME_oneline(X509_NAME *a,char *buf,int size);
882
883 int ASN1_item_digest(const ASN1_ITEM *it,const EVP_MD *type,void *data,
884         unsigned char *md,unsigned int *len);
885
886 int ASN1_item_verify(const ASN1_ITEM *it, X509_ALGOR *algor1,
887         ASN1_BIT_STRING *signature,void *data,EVP_PKEY *pkey);
888
889 int ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2,
890         ASN1_BIT_STRING *signature,
891         void *data, EVP_PKEY *pkey, const EVP_MD *type);
892 int ASN1_item_sign_ctx(const ASN1_ITEM *it,
893                 X509_ALGOR *algor1, X509_ALGOR *algor2,
894                 ASN1_BIT_STRING *signature, void *asn, EVP_MD_CTX *ctx);
895 #endif
896
897 int             X509_set_version(X509 *x,long version);
898 int             X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial);
899 ASN1_INTEGER *  X509_get_serialNumber(X509 *x);
900 int             X509_set_issuer_name(X509 *x, X509_NAME *name);
901 X509_NAME *     X509_get_issuer_name(X509 *a);
902 int             X509_set_subject_name(X509 *x, X509_NAME *name);
903 X509_NAME *     X509_get_subject_name(X509 *a);
904 int             X509_set_notBefore(X509 *x, const ASN1_TIME *tm);
905 int             X509_set_notAfter(X509 *x, const ASN1_TIME *tm);
906 int             X509_set_pubkey(X509 *x, EVP_PKEY *pkey);
907 EVP_PKEY *      X509_get_pubkey(X509 *x);
908 ASN1_BIT_STRING * X509_get0_pubkey_bitstr(const X509 *x);
909 int             X509_certificate_type(X509 *x,EVP_PKEY *pubkey /* optional */);
910
911 int             X509_REQ_set_version(X509_REQ *x,long version);
912 int             X509_REQ_set_subject_name(X509_REQ *req,X509_NAME *name);
913 int             X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey);
914 EVP_PKEY *      X509_REQ_get_pubkey(X509_REQ *req);
915 int             X509_REQ_extension_nid(int nid);
916 int *           X509_REQ_get_extension_nids(void);
917 void            X509_REQ_set_extension_nids(int *nids);
918 STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req);
919 int X509_REQ_add_extensions_nid(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts,
920                                 int nid);
921 int X509_REQ_add_extensions(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts);
922 int X509_REQ_get_attr_count(const X509_REQ *req);
923 int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid,
924                           int lastpos);
925 int X509_REQ_get_attr_by_OBJ(const X509_REQ *req, ASN1_OBJECT *obj,
926                           int lastpos);
927 X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc);
928 X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc);
929 int X509_REQ_add1_attr(X509_REQ *req, X509_ATTRIBUTE *attr);
930 int X509_REQ_add1_attr_by_OBJ(X509_REQ *req,
931                         const ASN1_OBJECT *obj, int type,
932                         const unsigned char *bytes, int len);
933 int X509_REQ_add1_attr_by_NID(X509_REQ *req,
934                         int nid, int type,
935                         const unsigned char *bytes, int len);
936 int X509_REQ_add1_attr_by_txt(X509_REQ *req,
937                         const char *attrname, int type,
938                         const unsigned char *bytes, int len);
939
940 int X509_CRL_set_version(X509_CRL *x, long version);
941 int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name);
942 int X509_CRL_set_lastUpdate(X509_CRL *x, const ASN1_TIME *tm);
943 int X509_CRL_set_nextUpdate(X509_CRL *x, const ASN1_TIME *tm);
944 int X509_CRL_sort(X509_CRL *crl);
945
946 int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial);
947 int X509_REVOKED_set_revocationDate(X509_REVOKED *r, ASN1_TIME *tm);
948
949 int             X509_REQ_check_private_key(X509_REQ *x509,EVP_PKEY *pkey);
950
951 int             X509_check_private_key(X509 *x509,EVP_PKEY *pkey);
952
953 int             X509_issuer_and_serial_cmp(const X509 *a, const X509 *b);
954 unsigned long   X509_issuer_and_serial_hash(X509 *a);
955
956 int             X509_issuer_name_cmp(const X509 *a, const X509 *b);
957 unsigned long   X509_issuer_name_hash(X509 *a);
958
959 int             X509_subject_name_cmp(const X509 *a, const X509 *b);
960 unsigned long   X509_subject_name_hash(X509 *x);
961
962 #ifndef OPENSSL_NO_MD5
963 unsigned long   X509_issuer_name_hash_old(X509 *a);
964 unsigned long   X509_subject_name_hash_old(X509 *x);
965 #endif
966
967 int             X509_cmp(const X509 *a, const X509 *b);
968 int             X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b);
969 unsigned long   X509_NAME_hash(X509_NAME *x);
970 unsigned long   X509_NAME_hash_old(X509_NAME *x);
971
972 int             X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b);
973 int             X509_CRL_match(const X509_CRL *a, const X509_CRL *b);
974 int             X509_print_ex_fp(FILE *bp,X509 *x, unsigned long nmflag, unsigned long cflag);
975 int             X509_print_fp(FILE *bp,X509 *x);
976 int             X509_CRL_print_fp(FILE *bp,X509_CRL *x);
977 int             X509_REQ_print_fp(FILE *bp,X509_REQ *req);
978 int X509_NAME_print_ex_fp(FILE *fp, X509_NAME *nm, int indent, unsigned long flags);
979
980 #ifndef OPENSSL_NO_BIO
981 int             X509_NAME_print(BIO *bp, X509_NAME *name, int obase);
982 int X509_NAME_print_ex(BIO *out, X509_NAME *nm, int indent, unsigned long flags);
983 int             X509_print_ex(BIO *bp,X509 *x, unsigned long nmflag, unsigned long cflag);
984 int             X509_print(BIO *bp,X509 *x);
985 int             X509_ocspid_print(BIO *bp,X509 *x);
986 int             X509_CERT_AUX_print(BIO *bp,X509_CERT_AUX *x, int indent);
987 int             X509_CRL_print(BIO *bp,X509_CRL *x);
988 int             X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflag, unsigned long cflag);
989 int             X509_REQ_print(BIO *bp,X509_REQ *req);
990 #endif
991
992 int             X509_NAME_entry_count(X509_NAME *name);
993 int             X509_NAME_get_text_by_NID(X509_NAME *name, int nid,
994                         char *buf,int len);
995 int             X509_NAME_get_text_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj,
996                         char *buf,int len);
997
998 /* NOTE: you should be passsing -1, not 0 as lastpos.  The functions that use
999  * lastpos, search after that position on. */
1000 int             X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos);
1001 int             X509_NAME_get_index_by_OBJ(X509_NAME *name,ASN1_OBJECT *obj,
1002                         int lastpos);
1003 X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc);
1004 X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc);
1005 int             X509_NAME_add_entry(X509_NAME *name,X509_NAME_ENTRY *ne,
1006                         int loc, int set);
1007 int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type,
1008                         unsigned char *bytes, int len, int loc, int set);
1009 int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type,
1010                         unsigned char *bytes, int len, int loc, int set);
1011 X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne,
1012                 const char *field, int type, const unsigned char *bytes, int len);
1013 X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid,
1014                         int type,unsigned char *bytes, int len);
1015 int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type,
1016                         const unsigned char *bytes, int len, int loc, int set);
1017 X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne,
1018                         ASN1_OBJECT *obj, int type,const unsigned char *bytes,
1019                         int len);
1020 int             X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne,
1021                         ASN1_OBJECT *obj);
1022 int             X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type,
1023                         const unsigned char *bytes, int len);
1024 ASN1_OBJECT *   X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne);
1025 ASN1_STRING *   X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne);
1026
1027 int             X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x);
1028 int             X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x,
1029                                       int nid, int lastpos);
1030 int             X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x,
1031                                       ASN1_OBJECT *obj,int lastpos);
1032 int             X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x,
1033                                            int crit, int lastpos);
1034 X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc);
1035 X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc);
1036 STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x,
1037                                          X509_EXTENSION *ex, int loc);
1038
1039 int             X509_get_ext_count(X509 *x);
1040 int             X509_get_ext_by_NID(X509 *x, int nid, int lastpos);
1041 int             X509_get_ext_by_OBJ(X509 *x,ASN1_OBJECT *obj,int lastpos);
1042 int             X509_get_ext_by_critical(X509 *x, int crit, int lastpos);
1043 X509_EXTENSION *X509_get_ext(X509 *x, int loc);
1044 X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
1045 int             X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
1046 void    *       X509_get_ext_d2i(X509 *x, int nid, int *crit, int *idx);
1047 int             X509_add1_ext_i2d(X509 *x, int nid, void *value, int crit,
1048                                                         unsigned long flags);
1049
1050 int             X509_CRL_get_ext_count(X509_CRL *x);
1051 int             X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos);
1052 int             X509_CRL_get_ext_by_OBJ(X509_CRL *x,ASN1_OBJECT *obj,int lastpos);
1053 int             X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos);
1054 X509_EXTENSION *X509_CRL_get_ext(X509_CRL *x, int loc);
1055 X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc);
1056 int             X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc);
1057 void    *       X509_CRL_get_ext_d2i(X509_CRL *x, int nid, int *crit, int *idx);
1058 int             X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, int crit,
1059                                                         unsigned long flags);
1060
1061 int             X509_REVOKED_get_ext_count(X509_REVOKED *x);
1062 int             X509_REVOKED_get_ext_by_NID(X509_REVOKED *x, int nid, int lastpos);
1063 int             X509_REVOKED_get_ext_by_OBJ(X509_REVOKED *x,ASN1_OBJECT *obj,int lastpos);
1064 int             X509_REVOKED_get_ext_by_critical(X509_REVOKED *x, int crit, int lastpos);
1065 X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *x, int loc);
1066 X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc);
1067 int             X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc);
1068 void    *       X509_REVOKED_get_ext_d2i(X509_REVOKED *x, int nid, int *crit, int *idx);
1069 int             X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid, void *value, int crit,
1070                                                         unsigned long flags);
1071
1072 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex,
1073                         int nid, int crit, ASN1_OCTET_STRING *data);
1074 X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
1075                         ASN1_OBJECT *obj,int crit,ASN1_OCTET_STRING *data);
1076 int             X509_EXTENSION_set_object(X509_EXTENSION *ex,ASN1_OBJECT *obj);
1077 int             X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit);
1078 int             X509_EXTENSION_set_data(X509_EXTENSION *ex,
1079                         ASN1_OCTET_STRING *data);
1080 ASN1_OBJECT *   X509_EXTENSION_get_object(X509_EXTENSION *ex);
1081 ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne);
1082 int             X509_EXTENSION_get_critical(X509_EXTENSION *ex);
1083
1084 int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x);
1085 int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x, int nid,
1086                           int lastpos);
1087 int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk, ASN1_OBJECT *obj,
1088                           int lastpos);
1089 X509_ATTRIBUTE *X509at_get_attr(const STACK_OF(X509_ATTRIBUTE) *x, int loc);
1090 X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x, int loc);
1091 STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(STACK_OF(X509_ATTRIBUTE) **x,
1092                                          X509_ATTRIBUTE *attr);
1093 STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(STACK_OF(X509_ATTRIBUTE) **x,
1094                         const ASN1_OBJECT *obj, int type,
1095                         const unsigned char *bytes, int len);
1096 STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(STACK_OF(X509_ATTRIBUTE) **x,
1097                         int nid, int type,
1098                         const unsigned char *bytes, int len);
1099 STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(STACK_OF(X509_ATTRIBUTE) **x,
1100                         const char *attrname, int type,
1101                         const unsigned char *bytes, int len);
1102 void *X509at_get0_data_by_OBJ(STACK_OF(X509_ATTRIBUTE) *x,
1103                                 ASN1_OBJECT *obj, int lastpos, int type);
1104 X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(X509_ATTRIBUTE **attr, int nid,
1105              int atrtype, const void *data, int len);
1106 X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(X509_ATTRIBUTE **attr,
1107              const ASN1_OBJECT *obj, int atrtype, const void *data, int len);
1108 X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(X509_ATTRIBUTE **attr,
1109                 const char *atrname, int type, const unsigned char *bytes, int len);
1110 int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr, const ASN1_OBJECT *obj);
1111 int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len);
1112 void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx,
1113                                         int atrtype, void *data);
1114 int X509_ATTRIBUTE_count(X509_ATTRIBUTE *attr);
1115 ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr);
1116 ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr, int idx);
1117
1118 int EVP_PKEY_get_attr_count(const EVP_PKEY *key);
1119 int EVP_PKEY_get_attr_by_NID(const EVP_PKEY *key, int nid,
1120                           int lastpos);
1121 int EVP_PKEY_get_attr_by_OBJ(const EVP_PKEY *key, ASN1_OBJECT *obj,
1122                           int lastpos);
1123 X509_ATTRIBUTE *EVP_PKEY_get_attr(const EVP_PKEY *key, int loc);
1124 X509_ATTRIBUTE *EVP_PKEY_delete_attr(EVP_PKEY *key, int loc);
1125 int EVP_PKEY_add1_attr(EVP_PKEY *key, X509_ATTRIBUTE *attr);
1126 int EVP_PKEY_add1_attr_by_OBJ(EVP_PKEY *key,
1127                         const ASN1_OBJECT *obj, int type,
1128                         const unsigned char *bytes, int len);
1129 int EVP_PKEY_add1_attr_by_NID(EVP_PKEY *key,
1130                         int nid, int type,
1131                         const unsigned char *bytes, int len);
1132 int EVP_PKEY_add1_attr_by_txt(EVP_PKEY *key,
1133                         const char *attrname, int type,
1134                         const unsigned char *bytes, int len);
1135
1136 int             X509_verify_cert(X509_STORE_CTX *ctx);
1137
1138 /* lookup a cert from a X509 STACK */
1139 X509 *X509_find_by_issuer_and_serial(STACK_OF(X509) *sk,X509_NAME *name,
1140                                      ASN1_INTEGER *serial);
1141 X509 *X509_find_by_subject(STACK_OF(X509) *sk,X509_NAME *name);
1142
1143 DECLARE_ASN1_FUNCTIONS(PBEPARAM)
1144 DECLARE_ASN1_FUNCTIONS(PBE2PARAM)
1145 DECLARE_ASN1_FUNCTIONS(PBKDF2PARAM)
1146
1147 int PKCS5_pbe_set0_algor(X509_ALGOR *algor, int alg, int iter,
1148                                 const unsigned char *salt, int saltlen);
1149
1150 X509_ALGOR *PKCS5_pbe_set(int alg, int iter,
1151                                 const unsigned char *salt, int saltlen);
1152 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter,
1153                                          unsigned char *salt, int saltlen);
1154 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter,
1155                                  unsigned char *salt, int saltlen,
1156                                  unsigned char *aiv, int prf_nid);
1157
1158 X509_ALGOR *PKCS5_pbkdf2_set(int iter, unsigned char *salt, int saltlen,
1159                                 int prf_nid, int keylen);
1160
1161 /* PKCS#8 utilities */
1162
1163 DECLARE_ASN1_FUNCTIONS(PKCS8_PRIV_KEY_INFO)
1164
1165 EVP_PKEY *EVP_PKCS82PKEY(PKCS8_PRIV_KEY_INFO *p8);
1166 PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(EVP_PKEY *pkey);
1167 PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8_broken(EVP_PKEY *pkey, int broken);
1168 PKCS8_PRIV_KEY_INFO *PKCS8_set_broken(PKCS8_PRIV_KEY_INFO *p8, int broken);
1169
1170 int PKCS8_pkey_set0(PKCS8_PRIV_KEY_INFO *priv, ASN1_OBJECT *aobj,
1171                         int version, int ptype, void *pval,
1172                                 unsigned char *penc, int penclen);
1173 int PKCS8_pkey_get0(ASN1_OBJECT **ppkalg,
1174                 const unsigned char **pk, int *ppklen,
1175                 X509_ALGOR **pa,
1176                 PKCS8_PRIV_KEY_INFO *p8);
1177
1178 int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj,
1179                                         int ptype, void *pval,
1180                                         unsigned char *penc, int penclen);
1181 int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg,
1182                 const unsigned char **pk, int *ppklen,
1183                 X509_ALGOR **pa,
1184                 X509_PUBKEY *pub);
1185
1186 int X509_check_trust(X509 *x, int id, int flags);
1187 int X509_TRUST_get_count(void);
1188 X509_TRUST * X509_TRUST_get0(int idx);
1189 int X509_TRUST_get_by_id(int id);
1190 int X509_TRUST_add(int id, int flags, int (*ck)(X509_TRUST *, X509 *, int),
1191                                         char *name, int arg1, void *arg2);
1192 void X509_TRUST_cleanup(void);
1193 int X509_TRUST_get_flags(X509_TRUST *xp);
1194 char *X509_TRUST_get0_name(X509_TRUST *xp);
1195 int X509_TRUST_get_trust(X509_TRUST *xp);
1196
1197 /* BEGIN ERROR CODES */
1198 /* The following lines are auto generated by the script mkerr.pl. Any changes
1199  * made after this point may be overwritten when the script is next run.
1200  */
1201 void ERR_load_X509_strings(void);
1202
1203 /* Error codes for the X509 functions. */
1204
1205 /* Function codes. */
1206 #define X509_F_ADD_CERT_DIR                              100
1207 #define X509_F_BY_FILE_CTRL                              101
1208 #define X509_F_CHECK_POLICY                              145
1209 #define X509_F_DIR_CTRL                                  102
1210 #define X509_F_GET_CERT_BY_SUBJECT                       103
1211 #define X509_F_NETSCAPE_SPKI_B64_DECODE                  129
1212 #define X509_F_NETSCAPE_SPKI_B64_ENCODE                  130
1213 #define X509_F_X509AT_ADD1_ATTR                          135
1214 #define X509_F_X509V3_ADD_EXT                            104
1215 #define X509_F_X509_ATTRIBUTE_CREATE_BY_NID              136
1216 #define X509_F_X509_ATTRIBUTE_CREATE_BY_OBJ              137
1217 #define X509_F_X509_ATTRIBUTE_CREATE_BY_TXT              140
1218 #define X509_F_X509_ATTRIBUTE_GET0_DATA                  139
1219 #define X509_F_X509_ATTRIBUTE_SET1_DATA                  138
1220 #define X509_F_X509_CHECK_PRIVATE_KEY                    128
1221 #define X509_F_X509_CRL_PRINT_FP                         147
1222 #define X509_F_X509_EXTENSION_CREATE_BY_NID              108
1223 #define X509_F_X509_EXTENSION_CREATE_BY_OBJ              109
1224 #define X509_F_X509_GET_PUBKEY_PARAMETERS                110
1225 #define X509_F_X509_LOAD_CERT_CRL_FILE                   132
1226 #define X509_F_X509_LOAD_CERT_FILE                       111
1227 #define X509_F_X509_LOAD_CRL_FILE                        112
1228 #define X509_F_X509_NAME_ADD_ENTRY                       113
1229 #define X509_F_X509_NAME_ENTRY_CREATE_BY_NID             114
1230 #define X509_F_X509_NAME_ENTRY_CREATE_BY_TXT             131
1231 #define X509_F_X509_NAME_ENTRY_SET_OBJECT                115
1232 #define X509_F_X509_NAME_ONELINE                         116
1233 #define X509_F_X509_NAME_PRINT                           117
1234 #define X509_F_X509_PRINT_EX_FP                          118
1235 #define X509_F_X509_PUBKEY_GET                           119
1236 #define X509_F_X509_PUBKEY_SET                           120
1237 #define X509_F_X509_REQ_CHECK_PRIVATE_KEY                144
1238 #define X509_F_X509_REQ_PRINT_EX                         121
1239 #define X509_F_X509_REQ_PRINT_FP                         122
1240 #define X509_F_X509_REQ_TO_X509                          123
1241 #define X509_F_X509_STORE_ADD_CERT                       124
1242 #define X509_F_X509_STORE_ADD_CRL                        125
1243 #define X509_F_X509_STORE_CTX_GET1_ISSUER                146
1244 #define X509_F_X509_STORE_CTX_INIT                       143
1245 #define X509_F_X509_STORE_CTX_NEW                        142
1246 #define X509_F_X509_STORE_CTX_PURPOSE_INHERIT            134
1247 #define X509_F_X509_TO_X509_REQ                          126
1248 #define X509_F_X509_TRUST_ADD                            133
1249 #define X509_F_X509_TRUST_SET                            141
1250 #define X509_F_X509_VERIFY_CERT                          127
1251
1252 /* Reason codes. */
1253 #define X509_R_BAD_X509_FILETYPE                         100
1254 #define X509_R_BASE64_DECODE_ERROR                       118
1255 #define X509_R_CANT_CHECK_DH_KEY                         114
1256 #define X509_R_CERT_ALREADY_IN_HASH_TABLE                101
1257 #define X509_R_ERR_ASN1_LIB                              102
1258 #define X509_R_INVALID_DIRECTORY                         113
1259 #define X509_R_INVALID_FIELD_NAME                        119
1260 #define X509_R_INVALID_TRUST                             123
1261 #define X509_R_KEY_TYPE_MISMATCH                         115
1262 #define X509_R_KEY_VALUES_MISMATCH                       116
1263 #define X509_R_LOADING_CERT_DIR                          103
1264 #define X509_R_LOADING_DEFAULTS                          104
1265 #define X509_R_METHOD_NOT_SUPPORTED                      124
1266 #define X509_R_NO_CERT_SET_FOR_US_TO_VERIFY              105
1267 #define X509_R_PUBLIC_KEY_DECODE_ERROR                   125
1268 #define X509_R_PUBLIC_KEY_ENCODE_ERROR                   126
1269 #define X509_R_SHOULD_RETRY                              106
1270 #define X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN        107
1271 #define X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY            108
1272 #define X509_R_UNKNOWN_KEY_TYPE                          117
1273 #define X509_R_UNKNOWN_NID                               109
1274 #define X509_R_UNKNOWN_PURPOSE_ID                        121
1275 #define X509_R_UNKNOWN_TRUST_ID                          120
1276 #define X509_R_UNSUPPORTED_ALGORITHM                     111
1277 #define X509_R_WRONG_LOOKUP_TYPE                         112
1278 #define X509_R_WRONG_TYPE                                122
1279
1280 #ifdef  __cplusplus
1281 }
1282 #endif
1283 #endif