x509v3.h revision 89837
11541Srgrimes/* x509v3.h */
21541Srgrimes/* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
31541Srgrimes * project 1999.
41541Srgrimes */
51541Srgrimes/* ====================================================================
61541Srgrimes * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
71541Srgrimes *
81541Srgrimes * Redistribution and use in source and binary forms, with or without
91541Srgrimes * modification, are permitted provided that the following conditions
101541Srgrimes * are met:
111541Srgrimes *
121541Srgrimes * 1. Redistributions of source code must retain the above copyright
131541Srgrimes *    notice, this list of conditions and the following disclaimer.
141541Srgrimes *
151541Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
161541Srgrimes *    notice, this list of conditions and the following disclaimer in
171541Srgrimes *    the documentation and/or other materials provided with the
181541Srgrimes *    distribution.
191541Srgrimes *
201541Srgrimes * 3. All advertising materials mentioning features or use of this
211541Srgrimes *    software must display the following acknowledgment:
221541Srgrimes *    "This product includes software developed by the OpenSSL Project
231541Srgrimes *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
241541Srgrimes *
251541Srgrimes * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
261541Srgrimes *    endorse or promote products derived from this software without
271541Srgrimes *    prior written permission. For written permission, please contact
281541Srgrimes *    licensing@OpenSSL.org.
291541Srgrimes *
301541Srgrimes * 5. Products derived from this software may not be called "OpenSSL"
311541Srgrimes *    nor may "OpenSSL" appear in their names without prior written
321541Srgrimes *    permission of the OpenSSL Project.
331541Srgrimes *
347090Sbde * 6. Redistributions of any form whatsoever must retain the following
351541Srgrimes *    acknowledgment:
361541Srgrimes *    "This product includes software developed by the OpenSSL Project
372169Spaul *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
382169Spaul *
392169Spaul * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
401541Srgrimes * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
411541Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
421541Srgrimes * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
431541Srgrimes * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
441541Srgrimes * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
451541Srgrimes * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
461541Srgrimes * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
471541Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
481541Srgrimes * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
491541Srgrimes * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
501541Srgrimes * OF THE POSSIBILITY OF SUCH DAMAGE.
511541Srgrimes * ====================================================================
521541Srgrimes *
531541Srgrimes * This product includes cryptographic software written by Eric Young
541541Srgrimes * (eay@cryptsoft.com).  This product includes software written by Tim
551541Srgrimes * Hudson (tjh@cryptsoft.com).
561541Srgrimes *
571541Srgrimes */
581541Srgrimes#ifndef HEADER_X509V3_H
591541Srgrimes#define HEADER_X509V3_H
601541Srgrimes
611541Srgrimes#include <openssl/bio.h>
621541Srgrimes#include <openssl/x509.h>
631541Srgrimes#include <openssl/conf.h>
641541Srgrimes
651541Srgrimes#ifdef __cplusplus
661541Srgrimesextern "C" {
671541Srgrimes#endif
681541Srgrimes
691541Srgrimes/* Forward reference */
701541Srgrimesstruct v3_ext_method;
711541Srgrimesstruct v3_ext_ctx;
721541Srgrimes
731541Srgrimes/* Useful typedefs */
741541Srgrimes
753865Sswallacetypedef void * (*X509V3_EXT_NEW)(void);
763865Sswallacetypedef void (*X509V3_EXT_FREE)(void *);
771541Srgrimestypedef void * (*X509V3_EXT_D2I)(void *, unsigned char ** , long);
781541Srgrimestypedef int (*X509V3_EXT_I2D)(void *, unsigned char **);
791541Srgrimestypedef STACK_OF(CONF_VALUE) * (*X509V3_EXT_I2V)(struct v3_ext_method *method, void *ext, STACK_OF(CONF_VALUE) *extlist);
801541Srgrimestypedef void * (*X509V3_EXT_V2I)(struct v3_ext_method *method, struct v3_ext_ctx *ctx, STACK_OF(CONF_VALUE) *values);
811541Srgrimestypedef char * (*X509V3_EXT_I2S)(struct v3_ext_method *method, void *ext);
821541Srgrimestypedef void * (*X509V3_EXT_S2I)(struct v3_ext_method *method, struct v3_ext_ctx *ctx, char *str);
831541Srgrimestypedef int (*X509V3_EXT_I2R)(struct v3_ext_method *method, void *ext, BIO *out, int indent);
841541Srgrimestypedef void * (*X509V3_EXT_R2I)(struct v3_ext_method *method, struct v3_ext_ctx *ctx, char *str);
857090Sbde
867090Sbde/* V3 extension structure */
877090Sbde
887090Sbdestruct v3_ext_method {
897090Sbdeint ext_nid;
901541Srgrimesint ext_flags;
911541SrgrimesX509V3_EXT_NEW ext_new;
921541SrgrimesX509V3_EXT_FREE ext_free;
931541SrgrimesX509V3_EXT_D2I d2i;
941541SrgrimesX509V3_EXT_I2D i2d;
951541Srgrimes
961541Srgrimes/* The following pair is used for string extensions */
971541SrgrimesX509V3_EXT_I2S i2s;
981541SrgrimesX509V3_EXT_S2I s2i;
991541Srgrimes
1001541Srgrimes/* The following pair is used for multi-valued extensions */
1011541SrgrimesX509V3_EXT_I2V i2v;
1023865SswallaceX509V3_EXT_V2I v2i;
1033865Sswallace
1041541Srgrimes/* The following are used for raw extensions */
1051541SrgrimesX509V3_EXT_I2R i2r;
1061541SrgrimesX509V3_EXT_R2I r2i;
1071541Srgrimes
1081541Srgrimesvoid *usr_data;	/* Any extension specific data */
1091541Srgrimes};
1101541Srgrimes
1111541Srgrimestypedef struct X509V3_CONF_METHOD_st {
1121541Srgrimeschar * (*get_string)(void *db, char *section, char *value);
1131541SrgrimesSTACK_OF(CONF_VALUE) * (*get_section)(void *db, char *section);
1141541Srgrimesvoid (*free_string)(void *db, char * string);
1151541Srgrimesvoid (*free_section)(void *db, STACK_OF(CONF_VALUE) *section);
1161541Srgrimes} X509V3_CONF_METHOD;
1171541Srgrimes
1181541Srgrimes/* Context specific info */
1191541Srgrimesstruct v3_ext_ctx {
1201541Srgrimes#define CTX_TEST 0x1
1211541Srgrimesint flags;
1221541SrgrimesX509 *issuer_cert;
1231541SrgrimesX509 *subject_cert;
1241541SrgrimesX509_REQ *subject_req;
1252531SwollmanX509_CRL *crl;
1262531SwollmanX509V3_CONF_METHOD *db_meth;
1272531Swollmanvoid *db;
1282531Swollman/* Maybe more here */
1292531Swollman};
1302531Swollman
1312531Swollmantypedef struct v3_ext_method X509V3_EXT_METHOD;
1322531Swollmantypedef struct v3_ext_ctx X509V3_CTX;
1332531Swollman
1342531SwollmanDECLARE_STACK_OF(X509V3_EXT_METHOD)
1352531Swollman
1362531Swollman/* ext_flags values */
1371541Srgrimes#define X509V3_EXT_DYNAMIC	0x1
1381541Srgrimes#define X509V3_EXT_CTX_DEP	0x2
1391541Srgrimes#define X509V3_EXT_MULTILINE	0x4
1401541Srgrimes
1411541Srgrimestypedef BIT_STRING_BITNAME ENUMERATED_NAMES;
1421541Srgrimes
1431541Srgrimestypedef struct BASIC_CONSTRAINTS_st {
1441541Srgrimesint ca;
1451541SrgrimesASN1_INTEGER *pathlen;
1461541Srgrimes} BASIC_CONSTRAINTS;
1471541Srgrimes
1481541Srgrimes
1492531Swollmantypedef struct PKEY_USAGE_PERIOD_st {
1502531SwollmanASN1_GENERALIZEDTIME *notBefore;
1511541SrgrimesASN1_GENERALIZEDTIME *notAfter;
1521541Srgrimes} PKEY_USAGE_PERIOD;
1531541Srgrimes
1541541Srgrimestypedef struct otherName_st {
1551541SrgrimesASN1_OBJECT *type_id;
1561541SrgrimesASN1_TYPE *value;
1571541Srgrimes} OTHERNAME;
1581541Srgrimes
1591541Srgrimestypedef struct GENERAL_NAME_st {
1601541Srgrimes
1611541Srgrimes#define GEN_OTHERNAME	(0|V_ASN1_CONTEXT_SPECIFIC)
1621541Srgrimes#define GEN_EMAIL	(1|V_ASN1_CONTEXT_SPECIFIC)
1631541Srgrimes#define GEN_DNS		(2|V_ASN1_CONTEXT_SPECIFIC)
1641541Srgrimes#define GEN_X400	(3|V_ASN1_CONTEXT_SPECIFIC)
1651541Srgrimes#define GEN_DIRNAME	(4|V_ASN1_CONTEXT_SPECIFIC)
1661541Srgrimes#define GEN_EDIPARTY	(5|V_ASN1_CONTEXT_SPECIFIC)
1671541Srgrimes#define GEN_URI		(6|V_ASN1_CONTEXT_SPECIFIC)
1681541Srgrimes#define GEN_IPADD	(7|V_ASN1_CONTEXT_SPECIFIC)
1691541Srgrimes#define GEN_RID		(8|V_ASN1_CONTEXT_SPECIFIC)
1701541Srgrimes
1711541Srgrimesint type;
1721541Srgrimesunion {
1731541Srgrimes	char *ptr;
1741541Srgrimes	ASN1_IA5STRING *ia5;/* rfc822Name, dNSName, uniformResourceIdentifier */
1751541Srgrimes	ASN1_OCTET_STRING *ip; /* iPAddress */
1761541Srgrimes	X509_NAME *dirn;		/* dirn */
1771541Srgrimes	ASN1_OBJECT *rid; /* registeredID */
1781541Srgrimes	OTHERNAME *otherName; /* otherName */
1791541Srgrimes	ASN1_TYPE *other; /* ediPartyName, x400Address */
1801541Srgrimes} d;
1811541Srgrimes} GENERAL_NAME;
1821541Srgrimes
1831541Srgrimestypedef struct ACCESS_DESCRIPTION_st {
1841541Srgrimes	ASN1_OBJECT *method;
1851541Srgrimes	GENERAL_NAME *location;
1861541Srgrimes} ACCESS_DESCRIPTION;
1871541Srgrimes
1881541SrgrimesDECLARE_STACK_OF(GENERAL_NAME)
1891541SrgrimesDECLARE_ASN1_SET_OF(GENERAL_NAME)
1901541Srgrimes
1911541SrgrimesDECLARE_STACK_OF(ACCESS_DESCRIPTION)
1921541SrgrimesDECLARE_ASN1_SET_OF(ACCESS_DESCRIPTION)
1931541Srgrimes
1941541Srgrimestypedef struct DIST_POINT_NAME_st {
1951541Srgrimes/* NB: this is a CHOICE type and only one of these should be set */
1961541SrgrimesSTACK_OF(GENERAL_NAME) *fullname;
1971541SrgrimesSTACK_OF(X509_NAME_ENTRY) *relativename;
1981541Srgrimes} DIST_POINT_NAME;
1991541Srgrimes
2001541Srgrimestypedef struct DIST_POINT_st {
2011541SrgrimesDIST_POINT_NAME	*distpoint;
2021541SrgrimesASN1_BIT_STRING *reasons;
2031541SrgrimesSTACK_OF(GENERAL_NAME) *CRLissuer;
2041541Srgrimes} DIST_POINT;
2051541Srgrimes
2061541SrgrimesDECLARE_STACK_OF(DIST_POINT)
2071541SrgrimesDECLARE_ASN1_SET_OF(DIST_POINT)
2081541Srgrimes
2091541Srgrimestypedef struct AUTHORITY_KEYID_st {
2101541SrgrimesASN1_OCTET_STRING *keyid;
2111541SrgrimesSTACK_OF(GENERAL_NAME) *issuer;
2121541SrgrimesASN1_INTEGER *serial;
2131541Srgrimes} AUTHORITY_KEYID;
2141541Srgrimes
2151541Srgrimes/* Strong extranet structures */
2161541Srgrimes
2171541Srgrimestypedef struct SXNET_ID_st {
2181541Srgrimes	ASN1_INTEGER *zone;
2191541Srgrimes	ASN1_OCTET_STRING *user;
2201549Srgrimes} SXNETID;
2211541Srgrimes
2221541SrgrimesDECLARE_STACK_OF(SXNETID)
2232169SpaulDECLARE_ASN1_SET_OF(SXNETID)
2241541Srgrimes
2252169Spaultypedef struct SXNET_st {
226	ASN1_INTEGER *version;
227	STACK_OF(SXNETID) *ids;
228} SXNET;
229
230typedef struct NOTICEREF_st {
231	ASN1_STRING *organization;
232	STACK_OF(ASN1_INTEGER) *noticenos;
233} NOTICEREF;
234
235typedef struct USERNOTICE_st {
236	NOTICEREF *noticeref;
237	ASN1_STRING *exptext;
238} USERNOTICE;
239
240typedef struct POLICYQUALINFO_st {
241	ASN1_OBJECT *pqualid;
242	union {
243		ASN1_IA5STRING *cpsuri;
244		USERNOTICE *usernotice;
245		ASN1_TYPE *other;
246	} d;
247} POLICYQUALINFO;
248
249DECLARE_STACK_OF(POLICYQUALINFO)
250DECLARE_ASN1_SET_OF(POLICYQUALINFO)
251
252typedef struct POLICYINFO_st {
253	ASN1_OBJECT *policyid;
254	STACK_OF(POLICYQUALINFO) *qualifiers;
255} POLICYINFO;
256
257DECLARE_STACK_OF(POLICYINFO)
258DECLARE_ASN1_SET_OF(POLICYINFO)
259
260#define X509V3_conf_err(val) ERR_add_error_data(6, "section:", val->section, \
261",name:", val->name, ",value:", val->value);
262
263#define X509V3_set_ctx_test(ctx) \
264			X509V3_set_ctx(ctx, NULL, NULL, NULL, NULL, CTX_TEST)
265#define X509V3_set_ctx_nodb(ctx) ctx->db = NULL;
266
267#define EXT_BITSTRING(nid, table) { nid, 0, \
268			(X509V3_EXT_NEW)ASN1_BIT_STRING_new, \
269			(X509V3_EXT_FREE)ASN1_BIT_STRING_free, \
270			(X509V3_EXT_D2I)d2i_ASN1_BIT_STRING, \
271			(X509V3_EXT_I2D)i2d_ASN1_BIT_STRING, \
272			NULL, NULL, \
273			(X509V3_EXT_I2V)i2v_ASN1_BIT_STRING, \
274			(X509V3_EXT_V2I)v2i_ASN1_BIT_STRING, \
275			NULL, NULL, \
276			(char *)table}
277
278#define EXT_IA5STRING(nid) { nid, 0, \
279			(X509V3_EXT_NEW)ASN1_IA5STRING_new, \
280			(X509V3_EXT_FREE)ASN1_IA5STRING_free, \
281			(X509V3_EXT_D2I)d2i_ASN1_IA5STRING, \
282			(X509V3_EXT_I2D)i2d_ASN1_IA5STRING, \
283			(X509V3_EXT_I2S)i2s_ASN1_IA5STRING, \
284			(X509V3_EXT_S2I)s2i_ASN1_IA5STRING, \
285			NULL, NULL, NULL, NULL, \
286			NULL}
287
288#define EXT_END { -1, 0, NULL, NULL, NULL, NULL, NULL, NULL, \
289			 NULL, NULL, NULL, NULL, \
290			 NULL}
291
292
293/* X509_PURPOSE stuff */
294
295#define EXFLAG_BCONS		0x1
296#define EXFLAG_KUSAGE		0x2
297#define EXFLAG_XKUSAGE		0x4
298#define EXFLAG_NSCERT		0x8
299
300#define EXFLAG_CA		0x10
301#define EXFLAG_SS		0x20
302#define EXFLAG_V1		0x40
303#define EXFLAG_INVALID		0x80
304#define EXFLAG_SET		0x100
305
306#define KU_DIGITAL_SIGNATURE	0x0080
307#define KU_NON_REPUDIATION	0x0040
308#define KU_KEY_ENCIPHERMENT	0x0020
309#define KU_DATA_ENCIPHERMENT	0x0010
310#define KU_KEY_AGREEMENT	0x0008
311#define KU_KEY_CERT_SIGN	0x0004
312#define KU_CRL_SIGN		0x0002
313#define KU_ENCIPHER_ONLY	0x0001
314#define KU_DECIPHER_ONLY	0x8000
315
316#define NS_SSL_CLIENT		0x80
317#define NS_SSL_SERVER		0x40
318#define NS_SMIME		0x20
319#define NS_OBJSIGN		0x10
320#define NS_SSL_CA		0x04
321#define NS_SMIME_CA		0x02
322#define NS_OBJSIGN_CA		0x01
323
324#define XKU_SSL_SERVER		0x1
325#define XKU_SSL_CLIENT		0x2
326#define XKU_SMIME		0x4
327#define XKU_CODE_SIGN		0x8
328#define XKU_SGC			0x10
329
330#define X509_PURPOSE_DYNAMIC	0x1
331#define X509_PURPOSE_DYNAMIC_NAME	0x2
332
333typedef struct x509_purpose_st {
334	int purpose;
335	int trust;		/* Default trust ID */
336	int flags;
337	int (*check_purpose)(const struct x509_purpose_st *,
338				const X509 *, int);
339	char *name;
340	char *sname;
341	void *usr_data;
342} X509_PURPOSE;
343
344#define X509_PURPOSE_SSL_CLIENT		1
345#define X509_PURPOSE_SSL_SERVER		2
346#define X509_PURPOSE_NS_SSL_SERVER	3
347#define X509_PURPOSE_SMIME_SIGN		4
348#define X509_PURPOSE_SMIME_ENCRYPT	5
349#define X509_PURPOSE_CRL_SIGN		6
350#define X509_PURPOSE_ANY		7
351
352#define X509_PURPOSE_MIN		1
353#define X509_PURPOSE_MAX		7
354
355DECLARE_STACK_OF(X509_PURPOSE)
356
357int i2d_BASIC_CONSTRAINTS(BASIC_CONSTRAINTS *a, unsigned char **pp);
358BASIC_CONSTRAINTS *d2i_BASIC_CONSTRAINTS(BASIC_CONSTRAINTS **a, unsigned char **pp, long length);
359BASIC_CONSTRAINTS *BASIC_CONSTRAINTS_new(void);
360void BASIC_CONSTRAINTS_free(BASIC_CONSTRAINTS *a);
361
362int i2d_GENERAL_NAME(GENERAL_NAME *a, unsigned char **pp);
363GENERAL_NAME *d2i_GENERAL_NAME(GENERAL_NAME **a, unsigned char **pp, long length);
364GENERAL_NAME *GENERAL_NAME_new(void);
365void GENERAL_NAME_free(GENERAL_NAME *a);
366STACK_OF(CONF_VALUE) *i2v_GENERAL_NAME(X509V3_EXT_METHOD *method, GENERAL_NAME *gen, STACK_OF(CONF_VALUE) *ret);
367
368int i2d_SXNET(SXNET *a, unsigned char **pp);
369SXNET *d2i_SXNET(SXNET **a, unsigned char **pp, long length);
370SXNET *SXNET_new(void);
371void SXNET_free(SXNET *a);
372
373int i2d_SXNETID(SXNETID *a, unsigned char **pp);
374SXNETID *d2i_SXNETID(SXNETID **a, unsigned char **pp, long length);
375SXNETID *SXNETID_new(void);
376void SXNETID_free(SXNETID *a);
377
378int SXNET_add_id_asc(SXNET **psx, char *zone, char *user, int userlen);
379int SXNET_add_id_ulong(SXNET **psx, unsigned long lzone, char *user, int userlen);
380int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *izone, char *user, int userlen);
381
382ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone);
383ASN1_OCTET_STRING *SXNET_get_id_ulong(SXNET *sx, unsigned long lzone);
384ASN1_OCTET_STRING *SXNET_get_id_INTEGER(SXNET *sx, ASN1_INTEGER *zone);
385
386int i2d_AUTHORITY_KEYID(AUTHORITY_KEYID *a, unsigned char **pp);
387AUTHORITY_KEYID *d2i_AUTHORITY_KEYID(AUTHORITY_KEYID **a, unsigned char **pp, long length);
388AUTHORITY_KEYID *AUTHORITY_KEYID_new(void);
389void AUTHORITY_KEYID_free(AUTHORITY_KEYID *a);
390
391int i2d_PKEY_USAGE_PERIOD(PKEY_USAGE_PERIOD *a, unsigned char **pp);
392PKEY_USAGE_PERIOD *d2i_PKEY_USAGE_PERIOD(PKEY_USAGE_PERIOD **a, unsigned char **pp, long length);
393PKEY_USAGE_PERIOD *PKEY_USAGE_PERIOD_new(void);
394void PKEY_USAGE_PERIOD_free(PKEY_USAGE_PERIOD *a);
395
396STACK_OF(GENERAL_NAME) *GENERAL_NAMES_new(void);
397void GENERAL_NAMES_free(STACK_OF(GENERAL_NAME) *a);
398STACK_OF(GENERAL_NAME) *d2i_GENERAL_NAMES(STACK_OF(GENERAL_NAME) **a, unsigned char **pp, long length);
399int i2d_GENERAL_NAMES(STACK_OF(GENERAL_NAME) *a, unsigned char **pp);
400STACK_OF(CONF_VALUE) *i2v_GENERAL_NAMES(X509V3_EXT_METHOD *method,
401		STACK_OF(GENERAL_NAME) *gen, STACK_OF(CONF_VALUE) *extlist);
402STACK_OF(GENERAL_NAME) *v2i_GENERAL_NAMES(X509V3_EXT_METHOD *method,
403				X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval);
404
405int i2d_OTHERNAME(OTHERNAME *a, unsigned char **pp);
406OTHERNAME *OTHERNAME_new(void);
407OTHERNAME *d2i_OTHERNAME(OTHERNAME **a, unsigned char **pp, long length);
408void OTHERNAME_free(OTHERNAME *a);
409
410char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, ASN1_OCTET_STRING *ia5);
411ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str);
412
413int i2d_ext_ku(STACK_OF(ASN1_OBJECT) *a, unsigned char **pp);
414STACK_OF(ASN1_OBJECT) *d2i_ext_ku(STACK_OF(ASN1_OBJECT) **a,
415					unsigned char **pp, long length);
416void ext_ku_free(STACK_OF(ASN1_OBJECT) *a);
417STACK_OF(ASN1_OBJECT) *ext_ku_new(void);
418
419int i2d_CERTIFICATEPOLICIES(STACK_OF(POLICYINFO) *a, unsigned char **pp);
420STACK_OF(POLICYINFO) *CERTIFICATEPOLICIES_new(void);
421void CERTIFICATEPOLICIES_free(STACK_OF(POLICYINFO) *a);
422STACK_OF(POLICYINFO) *d2i_CERTIFICATEPOLICIES(STACK_OF(POLICYINFO) **a, unsigned char **pp, long length);
423
424int i2d_POLICYINFO(POLICYINFO *a, unsigned char **pp);
425POLICYINFO *POLICYINFO_new(void);
426POLICYINFO *d2i_POLICYINFO(POLICYINFO **a, unsigned char **pp, long length);
427void POLICYINFO_free(POLICYINFO *a);
428
429int i2d_POLICYQUALINFO(POLICYQUALINFO *a, unsigned char **pp);
430POLICYQUALINFO *POLICYQUALINFO_new(void);
431POLICYQUALINFO *d2i_POLICYQUALINFO(POLICYQUALINFO **a, unsigned char **pp,
432								 long length);
433void POLICYQUALINFO_free(POLICYQUALINFO *a);
434
435int i2d_USERNOTICE(USERNOTICE *a, unsigned char **pp);
436USERNOTICE *USERNOTICE_new(void);
437USERNOTICE *d2i_USERNOTICE(USERNOTICE **a, unsigned char **pp, long length);
438void USERNOTICE_free(USERNOTICE *a);
439
440int i2d_NOTICEREF(NOTICEREF *a, unsigned char **pp);
441NOTICEREF *NOTICEREF_new(void);
442NOTICEREF *d2i_NOTICEREF(NOTICEREF **a, unsigned char **pp, long length);
443void NOTICEREF_free(NOTICEREF *a);
444
445int i2d_CRL_DIST_POINTS(STACK_OF(DIST_POINT) *a, unsigned char **pp);
446STACK_OF(DIST_POINT) *CRL_DIST_POINTS_new(void);
447void CRL_DIST_POINTS_free(STACK_OF(DIST_POINT) *a);
448STACK_OF(DIST_POINT) *d2i_CRL_DIST_POINTS(STACK_OF(DIST_POINT) **a,
449                unsigned char **pp,long length);
450
451int i2d_DIST_POINT(DIST_POINT *a, unsigned char **pp);
452DIST_POINT *DIST_POINT_new(void);
453DIST_POINT *d2i_DIST_POINT(DIST_POINT **a, unsigned char **pp, long length);
454void DIST_POINT_free(DIST_POINT *a);
455
456int i2d_DIST_POINT_NAME(DIST_POINT_NAME *a, unsigned char **pp);
457DIST_POINT_NAME *DIST_POINT_NAME_new(void);
458void DIST_POINT_NAME_free(DIST_POINT_NAME *a);
459DIST_POINT_NAME *d2i_DIST_POINT_NAME(DIST_POINT_NAME **a, unsigned char **pp,
460             long length);
461
462int i2d_ACCESS_DESCRIPTION(ACCESS_DESCRIPTION *a, unsigned char **pp);
463ACCESS_DESCRIPTION *ACCESS_DESCRIPTION_new(void);
464void ACCESS_DESCRIPTION_free(ACCESS_DESCRIPTION *a);
465ACCESS_DESCRIPTION *d2i_ACCESS_DESCRIPTION(ACCESS_DESCRIPTION **a, unsigned char **pp,
466             long length);
467
468STACK_OF(ACCESS_DESCRIPTION) *AUTHORITY_INFO_ACCESS_new(void);
469void AUTHORITY_INFO_ACCESS_free(STACK_OF(ACCESS_DESCRIPTION) *a);
470STACK_OF(ACCESS_DESCRIPTION) *d2i_AUTHORITY_INFO_ACCESS(STACK_OF(ACCESS_DESCRIPTION) **a,
471					 unsigned char **pp, long length);
472int i2d_AUTHORITY_INFO_ACCESS(STACK_OF(ACCESS_DESCRIPTION) *a, unsigned char **pp);
473
474
475
476#ifdef HEADER_CONF_H
477GENERAL_NAME *v2i_GENERAL_NAME(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, CONF_VALUE *cnf);
478void X509V3_conf_free(CONF_VALUE *val);
479X509_EXTENSION *X509V3_EXT_conf_nid(LHASH *conf, X509V3_CTX *ctx, int ext_nid, char *value);
480X509_EXTENSION *X509V3_EXT_conf(LHASH *conf, X509V3_CTX *ctx, char *name, char *value);
481int X509V3_EXT_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, X509 *cert);
482int X509V3_EXT_REQ_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, X509_REQ *req);
483int X509V3_EXT_CRL_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl);
484int X509V3_add_value_bool_nf(char *name, int asn1_bool,
485						STACK_OF(CONF_VALUE) **extlist);
486int X509V3_get_value_bool(CONF_VALUE *value, int *asn1_bool);
487int X509V3_get_value_int(CONF_VALUE *value, ASN1_INTEGER **aint);
488void X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH *lhash);
489#endif
490
491char * X509V3_get_string(X509V3_CTX *ctx, char *name, char *section);
492STACK_OF(CONF_VALUE) * X509V3_get_section(X509V3_CTX *ctx, char *section);
493void X509V3_string_free(X509V3_CTX *ctx, char *str);
494void X509V3_section_free( X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section);
495void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subject,
496				 X509_REQ *req, X509_CRL *crl, int flags);
497
498int X509V3_add_value(const char *name, const char *value,
499						STACK_OF(CONF_VALUE) **extlist);
500int X509V3_add_value_uchar(const char *name, const unsigned char *value,
501						STACK_OF(CONF_VALUE) **extlist);
502int X509V3_add_value_bool(const char *name, int asn1_bool,
503						STACK_OF(CONF_VALUE) **extlist);
504int X509V3_add_value_int(const char *name, ASN1_INTEGER *aint,
505						STACK_OF(CONF_VALUE) **extlist);
506char * i2s_ASN1_INTEGER(X509V3_EXT_METHOD *meth, ASN1_INTEGER *aint);
507ASN1_INTEGER * s2i_ASN1_INTEGER(X509V3_EXT_METHOD *meth, char *value);
508char * i2s_ASN1_ENUMERATED(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint);
509char * i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint);
510int X509V3_EXT_add(X509V3_EXT_METHOD *ext);
511int X509V3_EXT_add_list(X509V3_EXT_METHOD *extlist);
512int X509V3_EXT_add_alias(int nid_to, int nid_from);
513void X509V3_EXT_cleanup(void);
514
515X509V3_EXT_METHOD *X509V3_EXT_get(X509_EXTENSION *ext);
516X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid);
517int X509V3_add_standard_extensions(void);
518STACK_OF(CONF_VALUE) *X509V3_parse_list(char *line);
519void *X509V3_EXT_d2i(X509_EXTENSION *ext);
520void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx);
521
522X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc);
523
524char *hex_to_string(unsigned char *buffer, long len);
525unsigned char *string_to_hex(char *str, long *len);
526int name_cmp(const char *name, const char *cmp);
527
528void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
529								 int ml);
530int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, int flag, int indent);
531int X509V3_EXT_print_fp(FILE *out, X509_EXTENSION *ext, int flag, int indent);
532
533int X509_check_purpose(X509 *x, int id, int ca);
534int X509_check_issued(X509 *issuer, X509 *subject);
535int X509_PURPOSE_get_count(void);
536X509_PURPOSE * X509_PURPOSE_get0(int idx);
537int X509_PURPOSE_get_by_sname(char *sname);
538int X509_PURPOSE_get_by_id(int id);
539int X509_PURPOSE_add(int id, int trust, int flags,
540			int (*ck)(const X509_PURPOSE *, const X509 *, int),
541				char *name, char *sname, void *arg);
542char *X509_PURPOSE_get0_name(X509_PURPOSE *xp);
543char *X509_PURPOSE_get0_sname(X509_PURPOSE *xp);
544int X509_PURPOSE_get_trust(X509_PURPOSE *xp);
545void X509_PURPOSE_cleanup(void);
546int X509_PURPOSE_get_id(X509_PURPOSE *);
547
548STACK *X509_get1_email(X509 *x);
549STACK *X509_REQ_get1_email(X509_REQ *x);
550void X509_email_free(STACK *sk);
551
552
553/* BEGIN ERROR CODES */
554/* The following lines are auto generated by the script mkerr.pl. Any changes
555 * made after this point may be overwritten when the script is next run.
556 */
557void ERR_load_X509V3_strings(void);
558
559/* Error codes for the X509V3 functions. */
560
561/* Function codes. */
562#define X509V3_F_COPY_EMAIL				 122
563#define X509V3_F_COPY_ISSUER				 123
564#define X509V3_F_DO_EXT_CONF				 124
565#define X509V3_F_DO_EXT_I2D				 135
566#define X509V3_F_HEX_TO_STRING				 111
567#define X509V3_F_I2S_ASN1_ENUMERATED			 121
568#define X509V3_F_I2S_ASN1_INTEGER			 120
569#define X509V3_F_I2V_AUTHORITY_INFO_ACCESS		 138
570#define X509V3_F_NOTICE_SECTION				 132
571#define X509V3_F_NREF_NOS				 133
572#define X509V3_F_POLICY_SECTION				 131
573#define X509V3_F_R2I_CERTPOL				 130
574#define X509V3_F_S2I_ASN1_IA5STRING			 100
575#define X509V3_F_S2I_ASN1_INTEGER			 108
576#define X509V3_F_S2I_ASN1_OCTET_STRING			 112
577#define X509V3_F_S2I_ASN1_SKEY_ID			 114
578#define X509V3_F_S2I_S2I_SKEY_ID			 115
579#define X509V3_F_STRING_TO_HEX				 113
580#define X509V3_F_SXNET_ADD_ASC				 125
581#define X509V3_F_SXNET_ADD_ID_INTEGER			 126
582#define X509V3_F_SXNET_ADD_ID_ULONG			 127
583#define X509V3_F_SXNET_GET_ID_ASC			 128
584#define X509V3_F_SXNET_GET_ID_ULONG			 129
585#define X509V3_F_V2I_ACCESS_DESCRIPTION			 139
586#define X509V3_F_V2I_ASN1_BIT_STRING			 101
587#define X509V3_F_V2I_AUTHORITY_KEYID			 119
588#define X509V3_F_V2I_BASIC_CONSTRAINTS			 102
589#define X509V3_F_V2I_CRLD				 134
590#define X509V3_F_V2I_EXT_KU				 103
591#define X509V3_F_V2I_GENERAL_NAME			 117
592#define X509V3_F_V2I_GENERAL_NAMES			 118
593#define X509V3_F_V3_GENERIC_EXTENSION			 116
594#define X509V3_F_X509V3_ADD_VALUE			 105
595#define X509V3_F_X509V3_EXT_ADD				 104
596#define X509V3_F_X509V3_EXT_ADD_ALIAS			 106
597#define X509V3_F_X509V3_EXT_CONF			 107
598#define X509V3_F_X509V3_EXT_I2D				 136
599#define X509V3_F_X509V3_GET_VALUE_BOOL			 110
600#define X509V3_F_X509V3_PARSE_LIST			 109
601#define X509V3_F_X509_PURPOSE_ADD			 137
602
603/* Reason codes. */
604#define X509V3_R_BAD_IP_ADDRESS				 118
605#define X509V3_R_BAD_OBJECT				 119
606#define X509V3_R_BN_DEC2BN_ERROR			 100
607#define X509V3_R_BN_TO_ASN1_INTEGER_ERROR		 101
608#define X509V3_R_DUPLICATE_ZONE_ID			 133
609#define X509V3_R_ERROR_CONVERTING_ZONE			 131
610#define X509V3_R_ERROR_IN_EXTENSION			 128
611#define X509V3_R_EXPECTED_A_SECTION_NAME		 137
612#define X509V3_R_EXTENSION_NAME_ERROR			 115
613#define X509V3_R_EXTENSION_NOT_FOUND			 102
614#define X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED	 103
615#define X509V3_R_EXTENSION_VALUE_ERROR			 116
616#define X509V3_R_ILLEGAL_HEX_DIGIT			 113
617#define X509V3_R_INVALID_BOOLEAN_STRING			 104
618#define X509V3_R_INVALID_EXTENSION_STRING		 105
619#define X509V3_R_INVALID_NAME				 106
620#define X509V3_R_INVALID_NULL_ARGUMENT			 107
621#define X509V3_R_INVALID_NULL_NAME			 108
622#define X509V3_R_INVALID_NULL_VALUE			 109
623#define X509V3_R_INVALID_NUMBER				 140
624#define X509V3_R_INVALID_NUMBERS			 141
625#define X509V3_R_INVALID_OBJECT_IDENTIFIER		 110
626#define X509V3_R_INVALID_OPTION				 138
627#define X509V3_R_INVALID_POLICY_IDENTIFIER		 134
628#define X509V3_R_INVALID_SECTION			 135
629#define X509V3_R_INVALID_SYNTAX				 143
630#define X509V3_R_ISSUER_DECODE_ERROR			 126
631#define X509V3_R_MISSING_VALUE				 124
632#define X509V3_R_NEED_ORGANIZATION_AND_NUMBERS		 142
633#define X509V3_R_NO_CONFIG_DATABASE			 136
634#define X509V3_R_NO_ISSUER_CERTIFICATE			 121
635#define X509V3_R_NO_ISSUER_DETAILS			 127
636#define X509V3_R_NO_POLICY_IDENTIFIER			 139
637#define X509V3_R_NO_PUBLIC_KEY				 114
638#define X509V3_R_NO_SUBJECT_DETAILS			 125
639#define X509V3_R_ODD_NUMBER_OF_DIGITS			 112
640#define X509V3_R_UNABLE_TO_GET_ISSUER_DETAILS		 122
641#define X509V3_R_UNABLE_TO_GET_ISSUER_KEYID		 123
642#define X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT		 111
643#define X509V3_R_UNKNOWN_EXTENSION			 129
644#define X509V3_R_UNKNOWN_EXTENSION_NAME			 130
645#define X509V3_R_UNKNOWN_OPTION				 120
646#define X509V3_R_UNSUPPORTED_OPTION			 117
647#define X509V3_R_USER_TOO_LONG				 132
648
649#ifdef  __cplusplus
650}
651#endif
652#endif
653