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