• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57 /* ====================================================================
58  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
59  * ECDH support in OpenSSL originally developed by
60  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
61  */
62 
63 #ifndef HEADER_X509_H
64 #define HEADER_X509_H
65 
66 #include <openssl/base.h>
67 
68 #include <time.h>
69 
70 #include <openssl/asn1.h>
71 #include <openssl/bio.h>
72 #include <openssl/cipher.h>
73 #include <openssl/dh.h>
74 #include <openssl/dsa.h>
75 #include <openssl/ecdh.h>
76 #include <openssl/ecdsa.h>
77 #include <openssl/ec.h>
78 #include <openssl/evp.h>
79 #include <openssl/obj.h>
80 #include <openssl/pkcs7.h>
81 #include <openssl/pool.h>
82 #include <openssl/rsa.h>
83 #include <openssl/sha.h>
84 #include <openssl/stack.h>
85 #include <openssl/thread.h>
86 
87 #ifdef  __cplusplus
88 extern "C" {
89 #endif
90 
91 
92 /* Legacy X.509 library.
93  *
94  * This header is part of OpenSSL's X.509 implementation. It is retained for
95  * compatibility but otherwise underdocumented and not actively maintained. In
96  * the future, a replacement library will be available. Meanwhile, minimize
97  * dependencies on this header where possible. */
98 
99 
100 #define X509_FILETYPE_PEM	1
101 #define X509_FILETYPE_ASN1	2
102 #define X509_FILETYPE_DEFAULT	3
103 
104 #define X509v3_KU_DIGITAL_SIGNATURE	0x0080
105 #define X509v3_KU_NON_REPUDIATION	0x0040
106 #define X509v3_KU_KEY_ENCIPHERMENT	0x0020
107 #define X509v3_KU_DATA_ENCIPHERMENT	0x0010
108 #define X509v3_KU_KEY_AGREEMENT		0x0008
109 #define X509v3_KU_KEY_CERT_SIGN		0x0004
110 #define X509v3_KU_CRL_SIGN		0x0002
111 #define X509v3_KU_ENCIPHER_ONLY		0x0001
112 #define X509v3_KU_DECIPHER_ONLY		0x8000
113 #define X509v3_KU_UNDEF			0xffff
114 
115 DEFINE_STACK_OF(X509_ALGOR)
116 DECLARE_ASN1_SET_OF(X509_ALGOR)
117 
118 typedef STACK_OF(X509_ALGOR) X509_ALGORS;
119 
120 struct X509_val_st
121 	{
122 	ASN1_TIME *notBefore;
123 	ASN1_TIME *notAfter;
124 	} /* X509_VAL */;
125 
126 struct X509_pubkey_st
127 	{
128 	X509_ALGOR *algor;
129 	ASN1_BIT_STRING *public_key;
130 	EVP_PKEY *pkey;
131 	};
132 
133 struct X509_sig_st
134 	{
135 	X509_ALGOR *algor;
136 	ASN1_OCTET_STRING *digest;
137 	} /* X509_SIG */;
138 
139 struct X509_name_entry_st
140 	{
141 	ASN1_OBJECT *object;
142 	ASN1_STRING *value;
143 	int set;
144 	int size; 	/* temp variable */
145 	} /* X509_NAME_ENTRY */;
146 
147 DEFINE_STACK_OF(X509_NAME_ENTRY)
148 DECLARE_ASN1_SET_OF(X509_NAME_ENTRY)
149 
150 /* we always keep X509_NAMEs in 2 forms. */
151 struct X509_name_st
152 	{
153 	STACK_OF(X509_NAME_ENTRY) *entries;
154 	int modified;	/* true if 'bytes' needs to be built */
155 	BUF_MEM *bytes;
156 /*	unsigned long hash; Keep the hash around for lookups */
157 	unsigned char *canon_enc;
158 	int canon_enclen;
159 	} /* X509_NAME */;
160 
161 DEFINE_STACK_OF(X509_NAME)
162 
163 struct X509_extension_st
164 	{
165 	ASN1_OBJECT *object;
166 	ASN1_BOOLEAN critical;
167 	ASN1_OCTET_STRING *value;
168 	} /* X509_EXTENSION */;
169 
170 typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS;
171 
172 DEFINE_STACK_OF(X509_EXTENSION)
173 DECLARE_ASN1_SET_OF(X509_EXTENSION)
174 
175 /* a sequence of these are used */
176 struct x509_attributes_st
177 	{
178 	ASN1_OBJECT *object;
179 	int single; /* 0 for a set, 1 for a single item (which is wrong) */
180 	union	{
181 		char		*ptr;
182 /* 0 */		STACK_OF(ASN1_TYPE) *set;
183 /* 1 */		ASN1_TYPE	*single;
184 		} value;
185 	} /* X509_ATTRIBUTE */;
186 
187 DEFINE_STACK_OF(X509_ATTRIBUTE)
188 DECLARE_ASN1_SET_OF(X509_ATTRIBUTE)
189 
190 
191 struct X509_req_info_st
192 	{
193 	ASN1_ENCODING enc;
194 	ASN1_INTEGER *version;
195 	X509_NAME *subject;
196 	X509_PUBKEY *pubkey;
197 	/*  d=2 hl=2 l=  0 cons: cont: 00 */
198 	STACK_OF(X509_ATTRIBUTE) *attributes; /* [ 0 ] */
199 	} /* X509_REQ_INFO */;
200 
201 struct X509_req_st
202 	{
203 	X509_REQ_INFO *req_info;
204 	X509_ALGOR *sig_alg;
205 	ASN1_BIT_STRING *signature;
206 	CRYPTO_refcount_t references;
207 	} /* X509_REQ */;
208 
209 struct x509_cinf_st
210 	{
211 	ASN1_INTEGER *version;		/* [ 0 ] default of v1 */
212 	ASN1_INTEGER *serialNumber;
213 	X509_ALGOR *signature;
214 	X509_NAME *issuer;
215 	X509_VAL *validity;
216 	X509_NAME *subject;
217 	X509_PUBKEY *key;
218 	ASN1_BIT_STRING *issuerUID;		/* [ 1 ] optional in v2 */
219 	ASN1_BIT_STRING *subjectUID;		/* [ 2 ] optional in v2 */
220 	STACK_OF(X509_EXTENSION) *extensions;	/* [ 3 ] optional in v3 */
221 	ASN1_ENCODING enc;
222 	} /* X509_CINF */;
223 
224 /* This stuff is certificate "auxiliary info"
225  * it contains details which are useful in certificate
226  * stores and databases. When used this is tagged onto
227  * the end of the certificate itself
228  */
229 
230 struct x509_cert_aux_st
231 	{
232 	STACK_OF(ASN1_OBJECT) *trust;		/* trusted uses */
233 	STACK_OF(ASN1_OBJECT) *reject;		/* rejected uses */
234 	ASN1_UTF8STRING *alias;			/* "friendly name" */
235 	ASN1_OCTET_STRING *keyid;		/* key id of private key */
236 	STACK_OF(X509_ALGOR) *other;		/* other unspecified info */
237 	} /* X509_CERT_AUX */;
238 
239 DECLARE_STACK_OF(DIST_POINT)
240 DECLARE_STACK_OF(GENERAL_NAME)
241 
242 struct x509_st
243 	{
244 	X509_CINF *cert_info;
245 	X509_ALGOR *sig_alg;
246 	ASN1_BIT_STRING *signature;
247 	CRYPTO_refcount_t references;
248 	char *name;
249 	CRYPTO_EX_DATA ex_data;
250 	/* These contain copies of various extension values */
251 	long ex_pathlen;
252 	long ex_pcpathlen;
253 	unsigned long ex_flags;
254 	unsigned long ex_kusage;
255 	unsigned long ex_xkusage;
256 	unsigned long ex_nscert;
257 	ASN1_OCTET_STRING *skid;
258 	AUTHORITY_KEYID *akid;
259 	X509_POLICY_CACHE *policy_cache;
260 	STACK_OF(DIST_POINT) *crldp;
261 	STACK_OF(GENERAL_NAME) *altname;
262 	NAME_CONSTRAINTS *nc;
263 	unsigned char sha1_hash[SHA_DIGEST_LENGTH];
264 	X509_CERT_AUX *aux;
265 	CRYPTO_BUFFER *buf;
266 	CRYPTO_MUTEX lock;
267 	} /* X509 */;
268 
269 DEFINE_STACK_OF(X509)
270 DECLARE_ASN1_SET_OF(X509)
271 
272 /* This is used for a table of trust checking functions */
273 
274 struct x509_trust_st {
275 	int trust;
276 	int flags;
277 	int (*check_trust)(struct x509_trust_st *, X509 *, int);
278 	char *name;
279 	int arg1;
280 	void *arg2;
281 } /* X509_TRUST */;
282 
283 DEFINE_STACK_OF(X509_TRUST)
284 
285 /* standard trust ids */
286 
287 #define X509_TRUST_DEFAULT	(-1)	/* Only valid in purpose settings */
288 
289 #define X509_TRUST_COMPAT	1
290 #define X509_TRUST_SSL_CLIENT	2
291 #define X509_TRUST_SSL_SERVER	3
292 #define X509_TRUST_EMAIL	4
293 #define X509_TRUST_OBJECT_SIGN	5
294 #define X509_TRUST_OCSP_SIGN	6
295 #define X509_TRUST_OCSP_REQUEST	7
296 #define X509_TRUST_TSA		8
297 
298 /* Keep these up to date! */
299 #define X509_TRUST_MIN		1
300 #define X509_TRUST_MAX		8
301 
302 
303 /* trust_flags values */
304 #define	X509_TRUST_DYNAMIC 	1
305 #define	X509_TRUST_DYNAMIC_NAME	2
306 
307 /* check_trust return codes */
308 
309 #define X509_TRUST_TRUSTED	1
310 #define X509_TRUST_REJECTED	2
311 #define X509_TRUST_UNTRUSTED	3
312 
313 /* Flags for X509_print_ex() */
314 
315 #define	X509_FLAG_COMPAT		0
316 #define	X509_FLAG_NO_HEADER		1L
317 #define	X509_FLAG_NO_VERSION		(1L << 1)
318 #define	X509_FLAG_NO_SERIAL		(1L << 2)
319 #define	X509_FLAG_NO_SIGNAME		(1L << 3)
320 #define	X509_FLAG_NO_ISSUER		(1L << 4)
321 #define	X509_FLAG_NO_VALIDITY		(1L << 5)
322 #define	X509_FLAG_NO_SUBJECT		(1L << 6)
323 #define	X509_FLAG_NO_PUBKEY		(1L << 7)
324 #define	X509_FLAG_NO_EXTENSIONS		(1L << 8)
325 #define	X509_FLAG_NO_SIGDUMP		(1L << 9)
326 #define	X509_FLAG_NO_AUX		(1L << 10)
327 #define	X509_FLAG_NO_ATTRIBUTES		(1L << 11)
328 #define	X509_FLAG_NO_IDS		(1L << 12)
329 
330 /* Flags specific to X509_NAME_print_ex() */
331 
332 /* The field separator information */
333 
334 #define XN_FLAG_SEP_MASK	(0xf << 16)
335 
336 #define XN_FLAG_COMPAT		0		/* Traditional SSLeay: use old X509_NAME_print */
337 #define XN_FLAG_SEP_COMMA_PLUS	(1 << 16)	/* RFC2253 ,+ */
338 #define XN_FLAG_SEP_CPLUS_SPC	(2 << 16)	/* ,+ spaced: more readable */
339 #define XN_FLAG_SEP_SPLUS_SPC	(3 << 16)	/* ;+ spaced */
340 #define XN_FLAG_SEP_MULTILINE	(4 << 16)	/* One line per field */
341 
342 #define XN_FLAG_DN_REV		(1 << 20)	/* Reverse DN order */
343 
344 /* How the field name is shown */
345 
346 #define XN_FLAG_FN_MASK		(0x3 << 21)
347 
348 #define XN_FLAG_FN_SN		0		/* Object short name */
349 #define XN_FLAG_FN_LN		(1 << 21)	/* Object long name */
350 #define XN_FLAG_FN_OID		(2 << 21)	/* Always use OIDs */
351 #define XN_FLAG_FN_NONE		(3 << 21)	/* No field names */
352 
353 #define XN_FLAG_SPC_EQ		(1 << 23)	/* Put spaces round '=' */
354 
355 /* This determines if we dump fields we don't recognise:
356  * RFC2253 requires this.
357  */
358 
359 #define XN_FLAG_DUMP_UNKNOWN_FIELDS (1 << 24)
360 
361 #define XN_FLAG_FN_ALIGN	(1 << 25)	/* Align field names to 20 characters */
362 
363 /* Complete set of RFC2253 flags */
364 
365 #define XN_FLAG_RFC2253 (ASN1_STRFLGS_RFC2253 | \
366 			XN_FLAG_SEP_COMMA_PLUS | \
367 			XN_FLAG_DN_REV | \
368 			XN_FLAG_FN_SN | \
369 			XN_FLAG_DUMP_UNKNOWN_FIELDS)
370 
371 /* readable oneline form */
372 
373 #define XN_FLAG_ONELINE (ASN1_STRFLGS_RFC2253 | \
374 			ASN1_STRFLGS_ESC_QUOTE | \
375 			XN_FLAG_SEP_CPLUS_SPC | \
376 			XN_FLAG_SPC_EQ | \
377 			XN_FLAG_FN_SN)
378 
379 /* readable multiline form */
380 
381 #define XN_FLAG_MULTILINE (ASN1_STRFLGS_ESC_CTRL | \
382 			ASN1_STRFLGS_ESC_MSB | \
383 			XN_FLAG_SEP_MULTILINE | \
384 			XN_FLAG_SPC_EQ | \
385 			XN_FLAG_FN_LN | \
386 			XN_FLAG_FN_ALIGN)
387 
388 struct x509_revoked_st
389 	{
390 	ASN1_INTEGER *serialNumber;
391 	ASN1_TIME *revocationDate;
392 	STACK_OF(X509_EXTENSION) /* optional */ *extensions;
393 	/* Set up if indirect CRL */
394 	STACK_OF(GENERAL_NAME) *issuer;
395 	/* Revocation reason */
396 	int reason;
397 	int sequence; /* load sequence */
398 	};
399 
400 DEFINE_STACK_OF(X509_REVOKED)
401 DECLARE_ASN1_SET_OF(X509_REVOKED)
402 
403 struct X509_crl_info_st
404 	{
405 	ASN1_INTEGER *version;
406 	X509_ALGOR *sig_alg;
407 	X509_NAME *issuer;
408 	ASN1_TIME *lastUpdate;
409 	ASN1_TIME *nextUpdate;
410 	STACK_OF(X509_REVOKED) *revoked;
411 	STACK_OF(X509_EXTENSION) /* [0] */ *extensions;
412 	ASN1_ENCODING enc;
413 	} /* X509_CRL_INFO */;
414 
415 DECLARE_STACK_OF(GENERAL_NAMES)
416 
417 struct X509_crl_st
418 	{
419 	/* actual signature */
420 	X509_CRL_INFO *crl;
421 	X509_ALGOR *sig_alg;
422 	ASN1_BIT_STRING *signature;
423 	CRYPTO_refcount_t references;
424 	int flags;
425 	/* Copies of various extensions */
426 	AUTHORITY_KEYID *akid;
427 	ISSUING_DIST_POINT *idp;
428 	/* Convenient breakdown of IDP */
429 	int idp_flags;
430 	int idp_reasons;
431 	/* CRL and base CRL numbers for delta processing */
432 	ASN1_INTEGER *crl_number;
433 	ASN1_INTEGER *base_crl_number;
434 	unsigned char sha1_hash[SHA_DIGEST_LENGTH];
435 	STACK_OF(GENERAL_NAMES) *issuers;
436 	const X509_CRL_METHOD *meth;
437 	void *meth_data;
438 	} /* X509_CRL */;
439 
440 DEFINE_STACK_OF(X509_CRL)
441 DECLARE_ASN1_SET_OF(X509_CRL)
442 
443 struct private_key_st
444 	{
445 	int version;
446 	/* The PKCS#8 data types */
447 	X509_ALGOR *enc_algor;
448 	ASN1_OCTET_STRING *enc_pkey;	/* encrypted pub key */
449 
450 	/* When decrypted, the following will not be NULL */
451 	EVP_PKEY *dec_pkey;
452 
453 	/* used to encrypt and decrypt */
454 	int key_length;
455 	char *key_data;
456 	int key_free;	/* true if we should auto free key_data */
457 
458 	/* expanded version of 'enc_algor' */
459 	EVP_CIPHER_INFO cipher;
460 	} /* X509_PKEY */;
461 
462 #ifndef OPENSSL_NO_EVP
463 struct X509_info_st
464 	{
465 	X509 *x509;
466 	X509_CRL *crl;
467 	X509_PKEY *x_pkey;
468 
469 	EVP_CIPHER_INFO enc_cipher;
470 	int enc_len;
471 	char *enc_data;
472 
473 	} /* X509_INFO */;
474 
475 DEFINE_STACK_OF(X509_INFO)
476 #endif
477 
478 /* The next 2 structures and their 8 routines were sent to me by
479  * Pat Richard <patr@x509.com> and are used to manipulate
480  * Netscapes spki structures - useful if you are writing a CA web page
481  */
482 struct Netscape_spkac_st
483 	{
484 	X509_PUBKEY *pubkey;
485 	ASN1_IA5STRING *challenge;	/* challenge sent in atlas >= PR2 */
486 	} /* NETSCAPE_SPKAC */;
487 
488 struct Netscape_spki_st
489 	{
490 	NETSCAPE_SPKAC *spkac;	/* signed public key and challenge */
491 	X509_ALGOR *sig_algor;
492 	ASN1_BIT_STRING *signature;
493 	} /* NETSCAPE_SPKI */;
494 
495 /* PKCS#8 private key info structure */
496 
497 struct pkcs8_priv_key_info_st
498         {
499         int broken;     /* Flag for various broken formats */
500 #define PKCS8_OK		0
501 #define PKCS8_NO_OCTET		1
502 #define PKCS8_EMBEDDED_PARAM	2
503 #define PKCS8_NS_DB		3
504 #define PKCS8_NEG_PRIVKEY	4
505         ASN1_INTEGER *version;
506         X509_ALGOR *pkeyalg;
507         ASN1_TYPE *pkey; /* Should be OCTET STRING but some are broken */
508         STACK_OF(X509_ATTRIBUTE) *attributes;
509         };
510 
511 #ifdef  __cplusplus
512 }
513 #endif
514 
515 #include <openssl/x509_vfy.h>
516 
517 #ifdef  __cplusplus
518 extern "C" {
519 #endif
520 
521 #define		X509_get_version(x) ASN1_INTEGER_get((x)->cert_info->version)
522 /* #define	X509_get_serialNumber(x) ((x)->cert_info->serialNumber) */
523 #define		X509_get_notBefore(x) ((x)->cert_info->validity->notBefore)
524 #define		X509_get_notAfter(x) ((x)->cert_info->validity->notAfter)
525 #define		X509_get_cert_info(x) ((x)->cert_info)
526 #define		X509_extract_key(x)	X509_get_pubkey(x) /*****/
527 #define		X509_REQ_get_version(x) ASN1_INTEGER_get((x)->req_info->version)
528 #define		X509_REQ_get_subject_name(x) ((x)->req_info->subject)
529 #define		X509_REQ_extract_key(a)	X509_REQ_get_pubkey(a)
530 #define		X509_name_cmp(a,b)	X509_NAME_cmp((a),(b))
531 #define		X509_get_signature_type(x) EVP_PKEY_type(OBJ_obj2nid((x)->sig_alg->algorithm))
532 
533 #define		X509_CRL_get_version(x) ASN1_INTEGER_get((x)->crl->version)
534 #define 	X509_CRL_get_lastUpdate(x) ((x)->crl->lastUpdate)
535 #define 	X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate)
536 #define		X509_CRL_get_issuer(x) ((x)->crl->issuer)
537 #define		X509_CRL_get_REVOKED(x) ((x)->crl->revoked)
538 
539 #define		X509_CINF_set_modified(c) ((c)->enc.modified = 1)
540 #define		X509_CINF_get_issuer(c) (&(c)->issuer)
541 #define		X509_CINF_get_extensions(c) ((c)->extensions)
542 #define		X509_CINF_get_signature(c) ((c)->signature)
543 
544 OPENSSL_EXPORT void X509_CRL_set_default_method(const X509_CRL_METHOD *meth);
545 OPENSSL_EXPORT X509_CRL_METHOD *X509_CRL_METHOD_new(
546 	int (*crl_init)(X509_CRL *crl),
547 	int (*crl_free)(X509_CRL *crl),
548 	int (*crl_lookup)(X509_CRL *crl, X509_REVOKED **ret,
549 				ASN1_INTEGER *ser, X509_NAME *issuer),
550 	int (*crl_verify)(X509_CRL *crl, EVP_PKEY *pk));
551 OPENSSL_EXPORT void X509_CRL_METHOD_free(X509_CRL_METHOD *m);
552 
553 OPENSSL_EXPORT void X509_CRL_set_meth_data(X509_CRL *crl, void *dat);
554 OPENSSL_EXPORT void *X509_CRL_get_meth_data(X509_CRL *crl);
555 
556 /* This one is only used so that a binary form can output, as in
557  * i2d_X509_NAME(X509_get_X509_PUBKEY(x),&buf) */
558 #define 	X509_get_X509_PUBKEY(x) ((x)->cert_info->key)
559 
560 
561 OPENSSL_EXPORT const char *X509_verify_cert_error_string(long n);
562 
563 #ifndef OPENSSL_NO_EVP
564 OPENSSL_EXPORT int X509_verify(X509 *a, EVP_PKEY *r);
565 
566 OPENSSL_EXPORT int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
567 OPENSSL_EXPORT int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r);
568 OPENSSL_EXPORT int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r);
569 
570 OPENSSL_EXPORT NETSCAPE_SPKI * NETSCAPE_SPKI_b64_decode(const char *str, int len);
571 OPENSSL_EXPORT char * NETSCAPE_SPKI_b64_encode(NETSCAPE_SPKI *x);
572 OPENSSL_EXPORT EVP_PKEY *NETSCAPE_SPKI_get_pubkey(NETSCAPE_SPKI *x);
573 OPENSSL_EXPORT int NETSCAPE_SPKI_set_pubkey(NETSCAPE_SPKI *x, EVP_PKEY *pkey);
574 
575 OPENSSL_EXPORT int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki);
576 
577 OPENSSL_EXPORT int X509_signature_dump(BIO *bp,const ASN1_STRING *sig, int indent);
578 OPENSSL_EXPORT int X509_signature_print(BIO *bp,X509_ALGOR *alg, ASN1_STRING *sig);
579 
580 OPENSSL_EXPORT int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md);
581 OPENSSL_EXPORT int X509_sign_ctx(X509 *x, EVP_MD_CTX *ctx);
582 OPENSSL_EXPORT int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md);
583 OPENSSL_EXPORT int X509_REQ_sign_ctx(X509_REQ *x, EVP_MD_CTX *ctx);
584 OPENSSL_EXPORT int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md);
585 OPENSSL_EXPORT int X509_CRL_sign_ctx(X509_CRL *x, EVP_MD_CTX *ctx);
586 OPENSSL_EXPORT int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *x, EVP_PKEY *pkey, const EVP_MD *md);
587 
588 OPENSSL_EXPORT int X509_pubkey_digest(const X509 *data,const EVP_MD *type,
589 		unsigned char *md, unsigned int *len);
590 OPENSSL_EXPORT int X509_digest(const X509 *data,const EVP_MD *type,
591 		unsigned char *md, unsigned int *len);
592 OPENSSL_EXPORT int X509_CRL_digest(const X509_CRL *data,const EVP_MD *type,
593 		unsigned char *md, unsigned int *len);
594 OPENSSL_EXPORT int X509_REQ_digest(const X509_REQ *data,const EVP_MD *type,
595 		unsigned char *md, unsigned int *len);
596 OPENSSL_EXPORT int X509_NAME_digest(const X509_NAME *data,const EVP_MD *type,
597 		unsigned char *md, unsigned int *len);
598 #endif
599 
600 /* X509_parse_from_buffer parses an X.509 structure from |buf| and returns a
601  * fresh X509 or NULL on error. There must not be any trailing data in |buf|.
602  * The returned structure (if any) holds a reference to |buf| rather than
603  * copying parts of it as a normal |d2i_X509| call would do. */
604 OPENSSL_EXPORT X509 *X509_parse_from_buffer(CRYPTO_BUFFER *buf);
605 
606 #ifndef OPENSSL_NO_FP_API
607 OPENSSL_EXPORT X509 *d2i_X509_fp(FILE *fp, X509 **x509);
608 OPENSSL_EXPORT int i2d_X509_fp(FILE *fp,X509 *x509);
609 OPENSSL_EXPORT X509_CRL *d2i_X509_CRL_fp(FILE *fp,X509_CRL **crl);
610 OPENSSL_EXPORT int i2d_X509_CRL_fp(FILE *fp,X509_CRL *crl);
611 OPENSSL_EXPORT X509_REQ *d2i_X509_REQ_fp(FILE *fp,X509_REQ **req);
612 OPENSSL_EXPORT int i2d_X509_REQ_fp(FILE *fp,X509_REQ *req);
613 OPENSSL_EXPORT RSA *d2i_RSAPrivateKey_fp(FILE *fp,RSA **rsa);
614 OPENSSL_EXPORT int i2d_RSAPrivateKey_fp(FILE *fp,RSA *rsa);
615 OPENSSL_EXPORT RSA *d2i_RSAPublicKey_fp(FILE *fp,RSA **rsa);
616 OPENSSL_EXPORT int i2d_RSAPublicKey_fp(FILE *fp,RSA *rsa);
617 OPENSSL_EXPORT RSA *d2i_RSA_PUBKEY_fp(FILE *fp,RSA **rsa);
618 OPENSSL_EXPORT int i2d_RSA_PUBKEY_fp(FILE *fp,RSA *rsa);
619 #ifndef OPENSSL_NO_DSA
620 OPENSSL_EXPORT DSA *d2i_DSA_PUBKEY_fp(FILE *fp, DSA **dsa);
621 OPENSSL_EXPORT int i2d_DSA_PUBKEY_fp(FILE *fp, DSA *dsa);
622 OPENSSL_EXPORT DSA *d2i_DSAPrivateKey_fp(FILE *fp, DSA **dsa);
623 OPENSSL_EXPORT int i2d_DSAPrivateKey_fp(FILE *fp, DSA *dsa);
624 #endif
625 OPENSSL_EXPORT EC_KEY *d2i_EC_PUBKEY_fp(FILE *fp, EC_KEY **eckey);
626 OPENSSL_EXPORT int   i2d_EC_PUBKEY_fp(FILE *fp, EC_KEY *eckey);
627 OPENSSL_EXPORT EC_KEY *d2i_ECPrivateKey_fp(FILE *fp, EC_KEY **eckey);
628 OPENSSL_EXPORT int   i2d_ECPrivateKey_fp(FILE *fp, EC_KEY *eckey);
629 OPENSSL_EXPORT X509_SIG *d2i_PKCS8_fp(FILE *fp,X509_SIG **p8);
630 OPENSSL_EXPORT int i2d_PKCS8_fp(FILE *fp,X509_SIG *p8);
631 OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_fp(FILE *fp,
632 						PKCS8_PRIV_KEY_INFO **p8inf);
633 OPENSSL_EXPORT int i2d_PKCS8_PRIV_KEY_INFO_fp(FILE *fp,PKCS8_PRIV_KEY_INFO *p8inf);
634 OPENSSL_EXPORT int i2d_PKCS8PrivateKeyInfo_fp(FILE *fp, EVP_PKEY *key);
635 OPENSSL_EXPORT int i2d_PrivateKey_fp(FILE *fp, EVP_PKEY *pkey);
636 OPENSSL_EXPORT EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a);
637 OPENSSL_EXPORT int i2d_PUBKEY_fp(FILE *fp, EVP_PKEY *pkey);
638 OPENSSL_EXPORT EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a);
639 #endif
640 
641 OPENSSL_EXPORT X509 *d2i_X509_bio(BIO *bp,X509 **x509);
642 OPENSSL_EXPORT int i2d_X509_bio(BIO *bp,X509 *x509);
643 OPENSSL_EXPORT X509_CRL *d2i_X509_CRL_bio(BIO *bp,X509_CRL **crl);
644 OPENSSL_EXPORT int i2d_X509_CRL_bio(BIO *bp,X509_CRL *crl);
645 OPENSSL_EXPORT X509_REQ *d2i_X509_REQ_bio(BIO *bp,X509_REQ **req);
646 OPENSSL_EXPORT int i2d_X509_REQ_bio(BIO *bp,X509_REQ *req);
647 OPENSSL_EXPORT RSA *d2i_RSAPrivateKey_bio(BIO *bp,RSA **rsa);
648 OPENSSL_EXPORT int i2d_RSAPrivateKey_bio(BIO *bp,RSA *rsa);
649 OPENSSL_EXPORT RSA *d2i_RSAPublicKey_bio(BIO *bp,RSA **rsa);
650 OPENSSL_EXPORT int i2d_RSAPublicKey_bio(BIO *bp,RSA *rsa);
651 OPENSSL_EXPORT RSA *d2i_RSA_PUBKEY_bio(BIO *bp,RSA **rsa);
652 OPENSSL_EXPORT int i2d_RSA_PUBKEY_bio(BIO *bp,RSA *rsa);
653 #ifndef OPENSSL_NO_DSA
654 OPENSSL_EXPORT DSA *d2i_DSA_PUBKEY_bio(BIO *bp, DSA **dsa);
655 OPENSSL_EXPORT int i2d_DSA_PUBKEY_bio(BIO *bp, DSA *dsa);
656 OPENSSL_EXPORT DSA *d2i_DSAPrivateKey_bio(BIO *bp, DSA **dsa);
657 OPENSSL_EXPORT int i2d_DSAPrivateKey_bio(BIO *bp, DSA *dsa);
658 #endif
659 OPENSSL_EXPORT EC_KEY *d2i_EC_PUBKEY_bio(BIO *bp, EC_KEY **eckey);
660 OPENSSL_EXPORT int   i2d_EC_PUBKEY_bio(BIO *bp, EC_KEY *eckey);
661 OPENSSL_EXPORT EC_KEY *d2i_ECPrivateKey_bio(BIO *bp, EC_KEY **eckey);
662 OPENSSL_EXPORT int   i2d_ECPrivateKey_bio(BIO *bp, EC_KEY *eckey);
663 OPENSSL_EXPORT X509_SIG *d2i_PKCS8_bio(BIO *bp,X509_SIG **p8);
664 OPENSSL_EXPORT int i2d_PKCS8_bio(BIO *bp,X509_SIG *p8);
665 OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_bio(BIO *bp,
666 						PKCS8_PRIV_KEY_INFO **p8inf);
667 OPENSSL_EXPORT int i2d_PKCS8_PRIV_KEY_INFO_bio(BIO *bp,PKCS8_PRIV_KEY_INFO *p8inf);
668 OPENSSL_EXPORT int i2d_PKCS8PrivateKeyInfo_bio(BIO *bp, EVP_PKEY *key);
669 OPENSSL_EXPORT int i2d_PrivateKey_bio(BIO *bp, EVP_PKEY *pkey);
670 OPENSSL_EXPORT EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a);
671 OPENSSL_EXPORT int i2d_PUBKEY_bio(BIO *bp, EVP_PKEY *pkey);
672 OPENSSL_EXPORT EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a);
673 
674 OPENSSL_EXPORT X509 *X509_dup(X509 *x509);
675 OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_dup(X509_ATTRIBUTE *xa);
676 OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_dup(X509_EXTENSION *ex);
677 OPENSSL_EXPORT X509_CRL *X509_CRL_dup(X509_CRL *crl);
678 OPENSSL_EXPORT X509_REVOKED *X509_REVOKED_dup(X509_REVOKED *rev);
679 OPENSSL_EXPORT X509_REQ *X509_REQ_dup(X509_REQ *req);
680 OPENSSL_EXPORT X509_ALGOR *X509_ALGOR_dup(X509_ALGOR *xn);
681 OPENSSL_EXPORT int X509_ALGOR_set0(X509_ALGOR *alg, const ASN1_OBJECT *aobj, int ptype, void *pval);
682 OPENSSL_EXPORT void X509_ALGOR_get0(ASN1_OBJECT **paobj, int *pptype, void **ppval,
683 						X509_ALGOR *algor);
684 OPENSSL_EXPORT void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md);
685 OPENSSL_EXPORT int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b);
686 
687 OPENSSL_EXPORT X509_NAME *X509_NAME_dup(X509_NAME *xn);
688 OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_dup(X509_NAME_ENTRY *ne);
689 
690 OPENSSL_EXPORT int		X509_cmp_time(const ASN1_TIME *s, time_t *t);
691 OPENSSL_EXPORT int		X509_cmp_current_time(const ASN1_TIME *s);
692 OPENSSL_EXPORT ASN1_TIME *	X509_time_adj(ASN1_TIME *s, long adj, time_t *t);
693 OPENSSL_EXPORT ASN1_TIME *	X509_time_adj_ex(ASN1_TIME *s, int offset_day, long offset_sec, time_t *t);
694 OPENSSL_EXPORT ASN1_TIME *	X509_gmtime_adj(ASN1_TIME *s, long adj);
695 
696 OPENSSL_EXPORT const char *	X509_get_default_cert_area(void );
697 OPENSSL_EXPORT const char *	X509_get_default_cert_dir(void );
698 OPENSSL_EXPORT const char *	X509_get_default_cert_file(void );
699 OPENSSL_EXPORT const char *	X509_get_default_cert_dir_env(void );
700 OPENSSL_EXPORT const char *	X509_get_default_cert_file_env(void );
701 OPENSSL_EXPORT const char *	X509_get_default_private_dir(void );
702 
703 OPENSSL_EXPORT X509_REQ *	X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md);
704 OPENSSL_EXPORT X509 *		X509_REQ_to_X509(X509_REQ *r, int days,EVP_PKEY *pkey);
705 
706 DECLARE_ASN1_ENCODE_FUNCTIONS(X509_ALGORS, X509_ALGORS, X509_ALGORS)
707 DECLARE_ASN1_FUNCTIONS(X509_VAL)
708 
709 DECLARE_ASN1_FUNCTIONS(X509_PUBKEY)
710 
711 OPENSSL_EXPORT int		X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
712 OPENSSL_EXPORT EVP_PKEY *	X509_PUBKEY_get(X509_PUBKEY *key);
713 OPENSSL_EXPORT int		i2d_PUBKEY(const EVP_PKEY *a,unsigned char **pp);
714 OPENSSL_EXPORT EVP_PKEY *	d2i_PUBKEY(EVP_PKEY **a,const unsigned char **pp,
715 			long length);
716 OPENSSL_EXPORT int		i2d_RSA_PUBKEY(const RSA *a,unsigned char **pp);
717 OPENSSL_EXPORT RSA *		d2i_RSA_PUBKEY(RSA **a,const unsigned char **pp,
718 			long length);
719 #ifndef OPENSSL_NO_DSA
720 OPENSSL_EXPORT int		i2d_DSA_PUBKEY(const DSA *a,unsigned char **pp);
721 OPENSSL_EXPORT DSA *		d2i_DSA_PUBKEY(DSA **a,const unsigned char **pp,
722 			long length);
723 #endif
724 OPENSSL_EXPORT int		i2d_EC_PUBKEY(const EC_KEY *a, unsigned char **pp);
725 OPENSSL_EXPORT EC_KEY 		*d2i_EC_PUBKEY(EC_KEY **a, const unsigned char **pp,
726 			long length);
727 
728 DECLARE_ASN1_FUNCTIONS(X509_SIG)
729 DECLARE_ASN1_FUNCTIONS(X509_REQ_INFO)
730 DECLARE_ASN1_FUNCTIONS(X509_REQ)
731 
732 DECLARE_ASN1_FUNCTIONS(X509_ATTRIBUTE)
733 OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype, void *value);
734 
735 DECLARE_ASN1_FUNCTIONS(X509_EXTENSION)
736 DECLARE_ASN1_ENCODE_FUNCTIONS(X509_EXTENSIONS, X509_EXTENSIONS, X509_EXTENSIONS)
737 
738 DECLARE_ASN1_FUNCTIONS(X509_NAME_ENTRY)
739 
740 DECLARE_ASN1_FUNCTIONS(X509_NAME)
741 
742 OPENSSL_EXPORT int		X509_NAME_set(X509_NAME **xn, X509_NAME *name);
743 
744 DECLARE_ASN1_FUNCTIONS(X509_CINF)
745 
746 DECLARE_ASN1_FUNCTIONS(X509)
747 DECLARE_ASN1_FUNCTIONS(X509_CERT_AUX)
748 
749 /* X509_up_ref adds one to the reference count of |x| and returns one. */
750 OPENSSL_EXPORT int X509_up_ref(X509 *x);
751 
752 OPENSSL_EXPORT int X509_get_ex_new_index(long argl, void *argp, CRYPTO_EX_unused *unused,
753 	     CRYPTO_EX_dup *dup_unused, CRYPTO_EX_free *free_func);
754 OPENSSL_EXPORT int X509_set_ex_data(X509 *r, int idx, void *arg);
755 OPENSSL_EXPORT void *X509_get_ex_data(X509 *r, int idx);
756 OPENSSL_EXPORT int		i2d_X509_AUX(X509 *a,unsigned char **pp);
757 OPENSSL_EXPORT X509 *		d2i_X509_AUX(X509 **a,const unsigned char **pp,long length);
758 
759 OPENSSL_EXPORT void X509_get0_signature(ASN1_BIT_STRING **psig, X509_ALGOR **palg,
760 								const X509 *x);
761 OPENSSL_EXPORT int X509_get_signature_nid(const X509 *x);
762 
763 OPENSSL_EXPORT int X509_alias_set1(X509 *x, unsigned char *name, int len);
764 OPENSSL_EXPORT int X509_keyid_set1(X509 *x, unsigned char *id, int len);
765 OPENSSL_EXPORT unsigned char * X509_alias_get0(X509 *x, int *len);
766 OPENSSL_EXPORT unsigned char * X509_keyid_get0(X509 *x, int *len);
767 OPENSSL_EXPORT int (*X509_TRUST_set_default(int (*trust)(int , X509 *, int)))(int, X509 *, int);
768 OPENSSL_EXPORT int X509_TRUST_set(int *t, int trust);
769 OPENSSL_EXPORT int X509_add1_trust_object(X509 *x, ASN1_OBJECT *obj);
770 OPENSSL_EXPORT int X509_add1_reject_object(X509 *x, ASN1_OBJECT *obj);
771 OPENSSL_EXPORT void X509_trust_clear(X509 *x);
772 OPENSSL_EXPORT void X509_reject_clear(X509 *x);
773 
774 DECLARE_ASN1_FUNCTIONS(X509_REVOKED)
775 DECLARE_ASN1_FUNCTIONS(X509_CRL_INFO)
776 DECLARE_ASN1_FUNCTIONS(X509_CRL)
777 
778 OPENSSL_EXPORT int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev);
779 OPENSSL_EXPORT int X509_CRL_get0_by_serial(X509_CRL *crl,
780 		X509_REVOKED **ret, ASN1_INTEGER *serial);
781 OPENSSL_EXPORT int X509_CRL_get0_by_cert(X509_CRL *crl, X509_REVOKED **ret, X509 *x);
782 
783 OPENSSL_EXPORT X509_PKEY *	X509_PKEY_new(void );
784 OPENSSL_EXPORT void		X509_PKEY_free(X509_PKEY *a);
785 
786 DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKI)
787 DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKAC)
788 
789 #ifndef OPENSSL_NO_EVP
790 OPENSSL_EXPORT X509_INFO *	X509_INFO_new(void);
791 OPENSSL_EXPORT void		X509_INFO_free(X509_INFO *a);
792 OPENSSL_EXPORT char *		X509_NAME_oneline(X509_NAME *a,char *buf,int size);
793 
794 OPENSSL_EXPORT int ASN1_digest(i2d_of_void *i2d,const EVP_MD *type,char *data,
795 		unsigned char *md,unsigned int *len);
796 
797 OPENSSL_EXPORT int ASN1_item_digest(const ASN1_ITEM *it,const EVP_MD *type,void *data,
798 	unsigned char *md,unsigned int *len);
799 
800 OPENSSL_EXPORT int ASN1_item_verify(const ASN1_ITEM *it, X509_ALGOR *algor1,
801 	ASN1_BIT_STRING *signature,void *data,EVP_PKEY *pkey);
802 
803 OPENSSL_EXPORT int ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2,
804 	ASN1_BIT_STRING *signature,
805 	void *data, EVP_PKEY *pkey, const EVP_MD *type);
806 OPENSSL_EXPORT int ASN1_item_sign_ctx(const ASN1_ITEM *it,
807 		X509_ALGOR *algor1, X509_ALGOR *algor2,
808 	     	ASN1_BIT_STRING *signature, void *asn, EVP_MD_CTX *ctx);
809 #endif
810 
811 OPENSSL_EXPORT int 		X509_set_version(X509 *x,long version);
812 OPENSSL_EXPORT int 		X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial);
813 OPENSSL_EXPORT ASN1_INTEGER *	X509_get_serialNumber(X509 *x);
814 OPENSSL_EXPORT int 		X509_set_issuer_name(X509 *x, X509_NAME *name);
815 OPENSSL_EXPORT X509_NAME *	X509_get_issuer_name(X509 *a);
816 OPENSSL_EXPORT int 		X509_set_subject_name(X509 *x, X509_NAME *name);
817 OPENSSL_EXPORT X509_NAME *	X509_get_subject_name(X509 *a);
818 OPENSSL_EXPORT int 		X509_set_notBefore(X509 *x, const ASN1_TIME *tm);
819 OPENSSL_EXPORT int 		X509_set_notAfter(X509 *x, const ASN1_TIME *tm);
820 OPENSSL_EXPORT int 		X509_set_pubkey(X509 *x, EVP_PKEY *pkey);
821 OPENSSL_EXPORT EVP_PKEY *	X509_get_pubkey(X509 *x);
822 OPENSSL_EXPORT ASN1_BIT_STRING * X509_get0_pubkey_bitstr(const X509 *x);
823 OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *X509_get0_extensions(const X509 *x);
824 
825 OPENSSL_EXPORT int		X509_REQ_set_version(X509_REQ *x,long version);
826 OPENSSL_EXPORT int		X509_REQ_set_subject_name(X509_REQ *req,X509_NAME *name);
827 OPENSSL_EXPORT int		X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey);
828 OPENSSL_EXPORT EVP_PKEY *	X509_REQ_get_pubkey(X509_REQ *req);
829 OPENSSL_EXPORT int		X509_REQ_extension_nid(int nid);
830 OPENSSL_EXPORT const int *	X509_REQ_get_extension_nids(void);
831 OPENSSL_EXPORT void		X509_REQ_set_extension_nids(const int *nids);
832 OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req);
833 OPENSSL_EXPORT int X509_REQ_add_extensions_nid(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts,
834 				int nid);
835 OPENSSL_EXPORT int X509_REQ_add_extensions(X509_REQ *req, STACK_OF(X509_EXTENSION) *exts);
836 OPENSSL_EXPORT int X509_REQ_get_attr_count(const X509_REQ *req);
837 OPENSSL_EXPORT int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid,
838 			  int lastpos);
839 OPENSSL_EXPORT int X509_REQ_get_attr_by_OBJ(const X509_REQ *req, ASN1_OBJECT *obj,
840 			  int lastpos);
841 OPENSSL_EXPORT X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc);
842 OPENSSL_EXPORT X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc);
843 OPENSSL_EXPORT int X509_REQ_add1_attr(X509_REQ *req, X509_ATTRIBUTE *attr);
844 OPENSSL_EXPORT int X509_REQ_add1_attr_by_OBJ(X509_REQ *req,
845 			const ASN1_OBJECT *obj, int type,
846 			const unsigned char *bytes, int len);
847 OPENSSL_EXPORT int X509_REQ_add1_attr_by_NID(X509_REQ *req,
848 			int nid, int type,
849 			const unsigned char *bytes, int len);
850 OPENSSL_EXPORT int X509_REQ_add1_attr_by_txt(X509_REQ *req,
851 			const char *attrname, int type,
852 			const unsigned char *bytes, int len);
853 
854 OPENSSL_EXPORT int X509_CRL_set_version(X509_CRL *x, long version);
855 OPENSSL_EXPORT int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name);
856 OPENSSL_EXPORT int X509_CRL_set_lastUpdate(X509_CRL *x, const ASN1_TIME *tm);
857 OPENSSL_EXPORT int X509_CRL_set_nextUpdate(X509_CRL *x, const ASN1_TIME *tm);
858 OPENSSL_EXPORT int X509_CRL_sort(X509_CRL *crl);
859 OPENSSL_EXPORT int X509_CRL_up_ref(X509_CRL *crl);
860 
861 OPENSSL_EXPORT int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial);
862 OPENSSL_EXPORT int X509_REVOKED_set_revocationDate(X509_REVOKED *r, ASN1_TIME *tm);
863 
864 OPENSSL_EXPORT X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer,
865 			EVP_PKEY *skey, const EVP_MD *md, unsigned int flags);
866 
867 OPENSSL_EXPORT int		X509_REQ_check_private_key(X509_REQ *x509,EVP_PKEY *pkey);
868 
869 OPENSSL_EXPORT int		X509_check_private_key(X509 *x509,EVP_PKEY *pkey);
870 OPENSSL_EXPORT int 		X509_chain_check_suiteb(int *perror_depth,
871 						X509 *x, STACK_OF(X509) *chain,
872 						unsigned long flags);
873 OPENSSL_EXPORT int 		X509_CRL_check_suiteb(X509_CRL *crl, EVP_PKEY *pk,
874 						unsigned long flags);
875 OPENSSL_EXPORT STACK_OF(X509) *X509_chain_up_ref(STACK_OF(X509) *chain);
876 
877 OPENSSL_EXPORT int		X509_issuer_and_serial_cmp(const X509 *a, const X509 *b);
878 OPENSSL_EXPORT unsigned long	X509_issuer_and_serial_hash(X509 *a);
879 
880 OPENSSL_EXPORT int		X509_issuer_name_cmp(const X509 *a, const X509 *b);
881 OPENSSL_EXPORT unsigned long	X509_issuer_name_hash(X509 *a);
882 
883 OPENSSL_EXPORT int		X509_subject_name_cmp(const X509 *a, const X509 *b);
884 OPENSSL_EXPORT unsigned long	X509_subject_name_hash(X509 *x);
885 
886 OPENSSL_EXPORT unsigned long	X509_issuer_name_hash_old(X509 *a);
887 OPENSSL_EXPORT unsigned long	X509_subject_name_hash_old(X509 *x);
888 
889 OPENSSL_EXPORT int		X509_cmp(const X509 *a, const X509 *b);
890 OPENSSL_EXPORT int		X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b);
891 OPENSSL_EXPORT unsigned long	X509_NAME_hash(X509_NAME *x);
892 OPENSSL_EXPORT unsigned long	X509_NAME_hash_old(X509_NAME *x);
893 
894 OPENSSL_EXPORT int		X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b);
895 OPENSSL_EXPORT int		X509_CRL_match(const X509_CRL *a, const X509_CRL *b);
896 #ifndef OPENSSL_NO_FP_API
897 OPENSSL_EXPORT int		X509_print_ex_fp(FILE *bp,X509 *x, unsigned long nmflag, unsigned long cflag);
898 OPENSSL_EXPORT int		X509_print_fp(FILE *bp,X509 *x);
899 OPENSSL_EXPORT int		X509_CRL_print_fp(FILE *bp,X509_CRL *x);
900 OPENSSL_EXPORT int		X509_REQ_print_fp(FILE *bp,X509_REQ *req);
901 OPENSSL_EXPORT int X509_NAME_print_ex_fp(FILE *fp, X509_NAME *nm, int indent, unsigned long flags);
902 #endif
903 
904 OPENSSL_EXPORT int		X509_NAME_print(BIO *bp, X509_NAME *name, int obase);
905 OPENSSL_EXPORT int X509_NAME_print_ex(BIO *out, X509_NAME *nm, int indent, unsigned long flags);
906 OPENSSL_EXPORT int		X509_print_ex(BIO *bp,X509 *x, unsigned long nmflag, unsigned long cflag);
907 OPENSSL_EXPORT int		X509_print(BIO *bp,X509 *x);
908 OPENSSL_EXPORT int		X509_ocspid_print(BIO *bp,X509 *x);
909 OPENSSL_EXPORT int		X509_CERT_AUX_print(BIO *bp,X509_CERT_AUX *x, int indent);
910 OPENSSL_EXPORT int		X509_CRL_print(BIO *bp,X509_CRL *x);
911 OPENSSL_EXPORT int		X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflag, unsigned long cflag);
912 OPENSSL_EXPORT int		X509_REQ_print(BIO *bp,X509_REQ *req);
913 
914 OPENSSL_EXPORT int 		X509_NAME_entry_count(X509_NAME *name);
915 OPENSSL_EXPORT int 		X509_NAME_get_text_by_NID(X509_NAME *name, int nid,
916 			char *buf,int len);
917 OPENSSL_EXPORT int		X509_NAME_get_text_by_OBJ(X509_NAME *name, const ASN1_OBJECT *obj,
918 			char *buf,int len);
919 
920 /* NOTE: you should be passsing -1, not 0 as lastpos.  The functions that use
921  * lastpos, search after that position on. */
922 OPENSSL_EXPORT int 		X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos);
923 OPENSSL_EXPORT int 		X509_NAME_get_index_by_OBJ(X509_NAME *name, const ASN1_OBJECT *obj,
924 			int lastpos);
925 OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc);
926 OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc);
927 OPENSSL_EXPORT int 		X509_NAME_add_entry(X509_NAME *name,X509_NAME_ENTRY *ne,
928 			int loc, int set);
929 OPENSSL_EXPORT int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type,
930 			unsigned char *bytes, int len, int loc, int set);
931 OPENSSL_EXPORT int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type,
932 			unsigned char *bytes, int len, int loc, int set);
933 OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne,
934 		const char *field, int type, const unsigned char *bytes, int len);
935 OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid,
936 			int type,unsigned char *bytes, int len);
937 OPENSSL_EXPORT int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type,
938 			const unsigned char *bytes, int len, int loc, int set);
939 OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne,
940 			const ASN1_OBJECT *obj, int type,const unsigned char *bytes,
941 			int len);
942 OPENSSL_EXPORT int 		X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne,
943 			const ASN1_OBJECT *obj);
944 OPENSSL_EXPORT int 		X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type,
945 			const unsigned char *bytes, int len);
946 OPENSSL_EXPORT ASN1_OBJECT *	X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne);
947 OPENSSL_EXPORT ASN1_STRING *	X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne);
948 
949 OPENSSL_EXPORT int		X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x);
950 OPENSSL_EXPORT int		X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x,
951 				      int nid, int lastpos);
952 OPENSSL_EXPORT int		X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x,
953 				      const ASN1_OBJECT *obj,int lastpos);
954 OPENSSL_EXPORT int		X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x,
955 					   int crit, int lastpos);
956 OPENSSL_EXPORT X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc);
957 OPENSSL_EXPORT X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc);
958 OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x,
959 					 X509_EXTENSION *ex, int loc);
960 
961 OPENSSL_EXPORT int		X509_get_ext_count(X509 *x);
962 OPENSSL_EXPORT int		X509_get_ext_by_NID(X509 *x, int nid, int lastpos);
963 OPENSSL_EXPORT int		X509_get_ext_by_OBJ(X509 *x,ASN1_OBJECT *obj,int lastpos);
964 OPENSSL_EXPORT int		X509_get_ext_by_critical(X509 *x, int crit, int lastpos);
965 OPENSSL_EXPORT X509_EXTENSION *X509_get_ext(X509 *x, int loc);
966 OPENSSL_EXPORT X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
967 OPENSSL_EXPORT int		X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
968 OPENSSL_EXPORT void	*	X509_get_ext_d2i(X509 *x, int nid, int *crit, int *idx);
969 OPENSSL_EXPORT int		X509_add1_ext_i2d(X509 *x, int nid, void *value, int crit,
970 							unsigned long flags);
971 
972 OPENSSL_EXPORT int		X509_CRL_get_ext_count(X509_CRL *x);
973 OPENSSL_EXPORT int		X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos);
974 OPENSSL_EXPORT int		X509_CRL_get_ext_by_OBJ(X509_CRL *x,ASN1_OBJECT *obj,int lastpos);
975 OPENSSL_EXPORT int		X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos);
976 OPENSSL_EXPORT X509_EXTENSION *X509_CRL_get_ext(X509_CRL *x, int loc);
977 OPENSSL_EXPORT X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc);
978 OPENSSL_EXPORT int		X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc);
979 OPENSSL_EXPORT void	*	X509_CRL_get_ext_d2i(X509_CRL *x, int nid, int *crit, int *idx);
980 OPENSSL_EXPORT int		X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, int crit,
981 							unsigned long flags);
982 
983 OPENSSL_EXPORT int		X509_REVOKED_get_ext_count(X509_REVOKED *x);
984 OPENSSL_EXPORT int		X509_REVOKED_get_ext_by_NID(X509_REVOKED *x, int nid, int lastpos);
985 OPENSSL_EXPORT int		X509_REVOKED_get_ext_by_OBJ(X509_REVOKED *x,ASN1_OBJECT *obj,int lastpos);
986 OPENSSL_EXPORT int		X509_REVOKED_get_ext_by_critical(X509_REVOKED *x, int crit, int lastpos);
987 OPENSSL_EXPORT X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *x, int loc);
988 OPENSSL_EXPORT X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc);
989 OPENSSL_EXPORT int		X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc);
990 OPENSSL_EXPORT void	*	X509_REVOKED_get_ext_d2i(X509_REVOKED *x, int nid, int *crit, int *idx);
991 OPENSSL_EXPORT int		X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid, void *value, int crit,
992 							unsigned long flags);
993 
994 OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex,
995 			int nid, int crit, ASN1_OCTET_STRING *data);
996 OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
997 			const ASN1_OBJECT *obj,int crit,ASN1_OCTET_STRING *data);
998 OPENSSL_EXPORT int		X509_EXTENSION_set_object(X509_EXTENSION *ex,const ASN1_OBJECT *obj);
999 OPENSSL_EXPORT int		X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit);
1000 OPENSSL_EXPORT int		X509_EXTENSION_set_data(X509_EXTENSION *ex,
1001 			ASN1_OCTET_STRING *data);
1002 OPENSSL_EXPORT ASN1_OBJECT *	X509_EXTENSION_get_object(X509_EXTENSION *ex);
1003 OPENSSL_EXPORT ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne);
1004 OPENSSL_EXPORT int		X509_EXTENSION_get_critical(X509_EXTENSION *ex);
1005 
1006 OPENSSL_EXPORT int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x);
1007 OPENSSL_EXPORT int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x, int nid,
1008 			  int lastpos);
1009 OPENSSL_EXPORT int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk, const ASN1_OBJECT *obj,
1010 			  int lastpos);
1011 OPENSSL_EXPORT X509_ATTRIBUTE *X509at_get_attr(const STACK_OF(X509_ATTRIBUTE) *x, int loc);
1012 OPENSSL_EXPORT X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x, int loc);
1013 OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(STACK_OF(X509_ATTRIBUTE) **x,
1014 					 X509_ATTRIBUTE *attr);
1015 OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(STACK_OF(X509_ATTRIBUTE) **x,
1016 			const ASN1_OBJECT *obj, int type,
1017 			const unsigned char *bytes, int len);
1018 OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(STACK_OF(X509_ATTRIBUTE) **x,
1019 			int nid, int type,
1020 			const unsigned char *bytes, int len);
1021 OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(STACK_OF(X509_ATTRIBUTE) **x,
1022 			const char *attrname, int type,
1023 			const unsigned char *bytes, int len);
1024 OPENSSL_EXPORT void *X509at_get0_data_by_OBJ(STACK_OF(X509_ATTRIBUTE) *x,
1025 				ASN1_OBJECT *obj, int lastpos, int type);
1026 OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(X509_ATTRIBUTE **attr, int nid,
1027 	     int atrtype, const void *data, int len);
1028 OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(X509_ATTRIBUTE **attr,
1029 	     const ASN1_OBJECT *obj, int atrtype, const void *data, int len);
1030 OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(X509_ATTRIBUTE **attr,
1031 		const char *atrname, int type, const unsigned char *bytes, int len);
1032 OPENSSL_EXPORT int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr, const ASN1_OBJECT *obj);
1033 OPENSSL_EXPORT int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len);
1034 OPENSSL_EXPORT void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx,
1035 					int atrtype, void *data);
1036 OPENSSL_EXPORT int X509_ATTRIBUTE_count(X509_ATTRIBUTE *attr);
1037 OPENSSL_EXPORT ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr);
1038 OPENSSL_EXPORT ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr, int idx);
1039 
1040 OPENSSL_EXPORT int		X509_verify_cert(X509_STORE_CTX *ctx);
1041 
1042 /* lookup a cert from a X509 STACK */
1043 OPENSSL_EXPORT X509 *X509_find_by_issuer_and_serial(STACK_OF(X509) *sk,X509_NAME *name,
1044 				     ASN1_INTEGER *serial);
1045 OPENSSL_EXPORT X509 *X509_find_by_subject(STACK_OF(X509) *sk,X509_NAME *name);
1046 
1047 /* PKCS#8 utilities */
1048 
1049 DECLARE_ASN1_FUNCTIONS(PKCS8_PRIV_KEY_INFO)
1050 
1051 OPENSSL_EXPORT EVP_PKEY *EVP_PKCS82PKEY(PKCS8_PRIV_KEY_INFO *p8);
1052 OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(EVP_PKEY *pkey);
1053 OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8_broken(EVP_PKEY *pkey, int broken);
1054 OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *PKCS8_set_broken(PKCS8_PRIV_KEY_INFO *p8, int broken);
1055 
1056 OPENSSL_EXPORT int PKCS8_pkey_set0(PKCS8_PRIV_KEY_INFO *priv, ASN1_OBJECT *aobj,
1057 			int version, int ptype, void *pval,
1058 				unsigned char *penc, int penclen);
1059 OPENSSL_EXPORT int PKCS8_pkey_get0(ASN1_OBJECT **ppkalg,
1060 		const unsigned char **pk, int *ppklen,
1061 		X509_ALGOR **pa,
1062 		PKCS8_PRIV_KEY_INFO *p8);
1063 
1064 OPENSSL_EXPORT int X509_PUBKEY_set0_param(X509_PUBKEY *pub, const ASN1_OBJECT *aobj,
1065 					int ptype, void *pval,
1066 					unsigned char *penc, int penclen);
1067 OPENSSL_EXPORT int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg,
1068 		const unsigned char **pk, int *ppklen,
1069 		X509_ALGOR **pa,
1070 		X509_PUBKEY *pub);
1071 
1072 OPENSSL_EXPORT int X509_check_trust(X509 *x, int id, int flags);
1073 OPENSSL_EXPORT int X509_TRUST_get_count(void);
1074 OPENSSL_EXPORT X509_TRUST * X509_TRUST_get0(int idx);
1075 OPENSSL_EXPORT int X509_TRUST_get_by_id(int id);
1076 OPENSSL_EXPORT int X509_TRUST_add(int id, int flags, int (*ck)(X509_TRUST *, X509 *, int),
1077 					char *name, int arg1, void *arg2);
1078 OPENSSL_EXPORT void X509_TRUST_cleanup(void);
1079 OPENSSL_EXPORT int X509_TRUST_get_flags(X509_TRUST *xp);
1080 OPENSSL_EXPORT char *X509_TRUST_get0_name(X509_TRUST *xp);
1081 OPENSSL_EXPORT int X509_TRUST_get_trust(X509_TRUST *xp);
1082 
1083 
1084 typedef struct rsa_pss_params_st {
1085   X509_ALGOR *hashAlgorithm;
1086   X509_ALGOR *maskGenAlgorithm;
1087   ASN1_INTEGER *saltLength;
1088   ASN1_INTEGER *trailerField;
1089 } RSA_PSS_PARAMS;
1090 
1091 DECLARE_ASN1_FUNCTIONS(RSA_PSS_PARAMS)
1092 
1093 
1094 
1095 #ifdef  __cplusplus
1096 }
1097 
1098 extern "C++" {
1099 
1100 namespace bssl {
1101 
1102 BORINGSSL_MAKE_STACK_DELETER(X509, X509_free)
1103 BORINGSSL_MAKE_STACK_DELETER(X509_CRL, X509_CRL_free)
1104 BORINGSSL_MAKE_STACK_DELETER(X509_EXTENSION, X509_EXTENSION_free)
1105 BORINGSSL_MAKE_STACK_DELETER(X509_NAME, X509_NAME_free)
1106 
1107 BORINGSSL_MAKE_DELETER(NETSCAPE_SPKI, NETSCAPE_SPKI_free)
1108 BORINGSSL_MAKE_DELETER(X509, X509_free)
1109 BORINGSSL_MAKE_DELETER(X509_ALGOR, X509_ALGOR_free)
1110 BORINGSSL_MAKE_DELETER(X509_CRL, X509_CRL_free)
1111 BORINGSSL_MAKE_DELETER(X509_CRL_METHOD, X509_CRL_METHOD_free)
1112 BORINGSSL_MAKE_DELETER(X509_EXTENSION, X509_EXTENSION_free)
1113 BORINGSSL_MAKE_DELETER(X509_INFO, X509_INFO_free)
1114 BORINGSSL_MAKE_DELETER(X509_LOOKUP, X509_LOOKUP_free)
1115 BORINGSSL_MAKE_DELETER(X509_NAME, X509_NAME_free)
1116 BORINGSSL_MAKE_DELETER(X509_NAME_ENTRY, X509_NAME_ENTRY_free)
1117 BORINGSSL_MAKE_DELETER(X509_PKEY, X509_PKEY_free)
1118 BORINGSSL_MAKE_DELETER(X509_POLICY_TREE, X509_policy_tree_free)
1119 BORINGSSL_MAKE_DELETER(X509_REQ, X509_REQ_free)
1120 BORINGSSL_MAKE_DELETER(X509_REVOKED, X509_REVOKED_free)
1121 BORINGSSL_MAKE_DELETER(X509_SIG, X509_SIG_free)
1122 BORINGSSL_MAKE_DELETER(X509_STORE, X509_STORE_free)
1123 BORINGSSL_MAKE_DELETER(X509_STORE_CTX, X509_STORE_CTX_free)
1124 BORINGSSL_MAKE_DELETER(X509_VERIFY_PARAM, X509_VERIFY_PARAM_free)
1125 
1126 }  // namespace bssl
1127 
1128 }  /* extern C++ */
1129 
1130 #endif
1131 
1132 #define X509_R_AKID_MISMATCH 100
1133 #define X509_R_BAD_PKCS7_VERSION 101
1134 #define X509_R_BAD_X509_FILETYPE 102
1135 #define X509_R_BASE64_DECODE_ERROR 103
1136 #define X509_R_CANT_CHECK_DH_KEY 104
1137 #define X509_R_CERT_ALREADY_IN_HASH_TABLE 105
1138 #define X509_R_CRL_ALREADY_DELTA 106
1139 #define X509_R_CRL_VERIFY_FAILURE 107
1140 #define X509_R_IDP_MISMATCH 108
1141 #define X509_R_INVALID_BIT_STRING_BITS_LEFT 109
1142 #define X509_R_INVALID_DIRECTORY 110
1143 #define X509_R_INVALID_FIELD_NAME 111
1144 #define X509_R_INVALID_PSS_PARAMETERS 112
1145 #define X509_R_INVALID_TRUST 113
1146 #define X509_R_ISSUER_MISMATCH 114
1147 #define X509_R_KEY_TYPE_MISMATCH 115
1148 #define X509_R_KEY_VALUES_MISMATCH 116
1149 #define X509_R_LOADING_CERT_DIR 117
1150 #define X509_R_LOADING_DEFAULTS 118
1151 #define X509_R_NEWER_CRL_NOT_NEWER 119
1152 #define X509_R_NOT_PKCS7_SIGNED_DATA 120
1153 #define X509_R_NO_CERTIFICATES_INCLUDED 121
1154 #define X509_R_NO_CERT_SET_FOR_US_TO_VERIFY 122
1155 #define X509_R_NO_CRLS_INCLUDED 123
1156 #define X509_R_NO_CRL_NUMBER 124
1157 #define X509_R_PUBLIC_KEY_DECODE_ERROR 125
1158 #define X509_R_PUBLIC_KEY_ENCODE_ERROR 126
1159 #define X509_R_SHOULD_RETRY 127
1160 #define X509_R_UNKNOWN_KEY_TYPE 128
1161 #define X509_R_UNKNOWN_NID 129
1162 #define X509_R_UNKNOWN_PURPOSE_ID 130
1163 #define X509_R_UNKNOWN_TRUST_ID 131
1164 #define X509_R_UNSUPPORTED_ALGORITHM 132
1165 #define X509_R_WRONG_LOOKUP_TYPE 133
1166 #define X509_R_WRONG_TYPE 134
1167 #define X509_R_NAME_TOO_LONG 135
1168 #define X509_R_INVALID_PARAMETER 136
1169 
1170 #endif
1171