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