]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/x509v3/x509v3.h
Make explicit_policy handling match expected RFC3280 behaviour.
[thirdparty/openssl.git] / crypto / x509v3 / x509v3.h
CommitLineData
9aeaf1b4
DSH
1/* x509v3.h */
2/* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
3 * project 1999.
4 */
5/* ====================================================================
ecf13991 6 * Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved.
58964a49 7 *
58964a49
RE
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
9aeaf1b4
DSH
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
58964a49 15 * 2. Redistributions in binary form must reproduce the above copyright
9aeaf1b4
DSH
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
58964a49 57 */
9aeaf1b4
DSH
58#ifndef HEADER_X509V3_H
59#define HEADER_X509V3_H
60
ec577822
BM
61#include <openssl/bio.h>
62#include <openssl/x509.h>
ba404b5e 63#include <openssl/conf.h>
9aeaf1b4 64
82271cee
RL
65#ifdef __cplusplus
66extern "C" {
67#endif
68
9aeaf1b4
DSH
69/* Forward reference */
70struct v3_ext_method;
71struct v3_ext_ctx;
72
73/* Useful typedefs */
74
66ab08b1
DSH
75typedef void * (*X509V3_EXT_NEW)(void);
76typedef void (*X509V3_EXT_FREE)(void *);
875a644a 77typedef void * (*X509V3_EXT_D2I)(void *, const unsigned char ** , long);
66ab08b1 78typedef int (*X509V3_EXT_I2D)(void *, unsigned char **);
ba404b5e
DSH
79typedef STACK_OF(CONF_VALUE) * (*X509V3_EXT_I2V)(struct v3_ext_method *method, void *ext, STACK_OF(CONF_VALUE) *extlist);
80typedef void * (*X509V3_EXT_V2I)(struct v3_ext_method *method, struct v3_ext_ctx *ctx, STACK_OF(CONF_VALUE) *values);
565d1065 81typedef char * (*X509V3_EXT_I2S)(struct v3_ext_method *method, void *ext);
875a644a 82typedef void * (*X509V3_EXT_S2I)(struct v3_ext_method *method, struct v3_ext_ctx *ctx, const char *str);
565d1065 83typedef int (*X509V3_EXT_I2R)(struct v3_ext_method *method, void *ext, BIO *out, int indent);
875a644a 84typedef void * (*X509V3_EXT_R2I)(struct v3_ext_method *method, struct v3_ext_ctx *ctx, const char *str);
9aeaf1b4
DSH
85
86/* V3 extension structure */
87
88struct v3_ext_method {
89int ext_nid;
90int ext_flags;
2aff7727 91/* If this is set the following four fields are ignored */
bb5ea36b 92ASN1_ITEM_EXP *it;
2aff7727 93/* Old style ASN1 calls */
9aeaf1b4
DSH
94X509V3_EXT_NEW ext_new;
95X509V3_EXT_FREE ext_free;
96X509V3_EXT_D2I d2i;
97X509V3_EXT_I2D i2d;
98
99/* The following pair is used for string extensions */
100X509V3_EXT_I2S i2s;
101X509V3_EXT_S2I s2i;
102
103/* The following pair is used for multi-valued extensions */
104X509V3_EXT_I2V i2v;
105X509V3_EXT_V2I v2i;
106
79a474e8 107/* The following are used for raw extensions */
9aeaf1b4 108X509V3_EXT_I2R i2r;
1d48dd00 109X509V3_EXT_R2I r2i;
9aeaf1b4 110
c8b41850 111void *usr_data; /* Any extension specific data */
9aeaf1b4
DSH
112};
113
1d48dd00
DSH
114typedef struct X509V3_CONF_METHOD_st {
115char * (*get_string)(void *db, char *section, char *value);
ba404b5e 116STACK_OF(CONF_VALUE) * (*get_section)(void *db, char *section);
1d48dd00 117void (*free_string)(void *db, char * string);
ba404b5e 118void (*free_section)(void *db, STACK_OF(CONF_VALUE) *section);
1d48dd00 119} X509V3_CONF_METHOD;
175b0942 120
9aeaf1b4 121/* Context specific info */
f317aa4c 122struct v3_ext_ctx {
175b0942
DSH
123#define CTX_TEST 0x1
124int flags;
9aeaf1b4
DSH
125X509 *issuer_cert;
126X509 *subject_cert;
127X509_REQ *subject_req;
175b0942 128X509_CRL *crl;
1d48dd00
DSH
129X509V3_CONF_METHOD *db_meth;
130void *db;
9aeaf1b4
DSH
131/* Maybe more here */
132};
133
134typedef struct v3_ext_method X509V3_EXT_METHOD;
9aeaf1b4 135
0d3b0afe
BL
136DECLARE_STACK_OF(X509V3_EXT_METHOD)
137
9aeaf1b4 138/* ext_flags values */
785cdf20
DSH
139#define X509V3_EXT_DYNAMIC 0x1
140#define X509V3_EXT_CTX_DEP 0x2
141#define X509V3_EXT_MULTILINE 0x4
9aeaf1b4 142
c74f1eb9
DSH
143typedef BIT_STRING_BITNAME ENUMERATED_NAMES;
144
0490a86d 145typedef struct BASIC_CONSTRAINTS_st {
9aeaf1b4
DSH
146int ca;
147ASN1_INTEGER *pathlen;
148} BASIC_CONSTRAINTS;
149
175b0942 150
0490a86d 151typedef struct PKEY_USAGE_PERIOD_st {
0be9747b
DSH
152ASN1_GENERALIZEDTIME *notBefore;
153ASN1_GENERALIZEDTIME *notAfter;
154} PKEY_USAGE_PERIOD;
155
a716d727
DSH
156typedef struct otherName_st {
157ASN1_OBJECT *type_id;
158ASN1_TYPE *value;
159} OTHERNAME;
160
9d6b1ce6
DSH
161typedef struct EDIPartyName_st {
162 ASN1_STRING *nameAssigner;
163 ASN1_STRING *partyName;
164} EDIPARTYNAME;
165
0490a86d 166typedef struct GENERAL_NAME_st {
142fcca8 167
9d6b1ce6
DSH
168#define GEN_OTHERNAME 0
169#define GEN_EMAIL 1
170#define GEN_DNS 2
171#define GEN_X400 3
172#define GEN_DIRNAME 4
173#define GEN_EDIPARTY 5
174#define GEN_URI 6
175#define GEN_IPADD 7
176#define GEN_RID 8
142fcca8
DSH
177
178int type;
179union {
180 char *ptr;
9d6b1ce6
DSH
181 OTHERNAME *otherName; /* otherName */
182 ASN1_IA5STRING *rfc822Name;
183 ASN1_IA5STRING *dNSName;
184 ASN1_TYPE *x400Address;
185 X509_NAME *directoryName;
186 EDIPARTYNAME *ediPartyName;
187 ASN1_IA5STRING *uniformResourceIdentifier;
188 ASN1_OCTET_STRING *iPAddress;
189 ASN1_OBJECT *registeredID;
190
191 /* Old names */
142fcca8
DSH
192 ASN1_OCTET_STRING *ip; /* iPAddress */
193 X509_NAME *dirn; /* dirn */
9d6b1ce6 194 ASN1_IA5STRING *ia5;/* rfc822Name, dNSName, uniformResourceIdentifier */
142fcca8 195 ASN1_OBJECT *rid; /* registeredID */
9d6b1ce6 196 ASN1_TYPE *other; /* x400Address */
142fcca8
DSH
197} d;
198} GENERAL_NAME;
199
9d6b1ce6
DSH
200typedef STACK_OF(GENERAL_NAME) GENERAL_NAMES;
201
6d3724d3 202typedef struct ACCESS_DESCRIPTION_st {
9cead2f2
RL
203 ASN1_OBJECT *method;
204 GENERAL_NAME *location;
6d3724d3
DSH
205} ACCESS_DESCRIPTION;
206
9d6b1ce6
DSH
207typedef STACK_OF(ACCESS_DESCRIPTION) AUTHORITY_INFO_ACCESS;
208
209typedef STACK_OF(ASN1_OBJECT) EXTENDED_KEY_USAGE;
210
f5fedc04
DSH
211DECLARE_STACK_OF(GENERAL_NAME)
212DECLARE_ASN1_SET_OF(GENERAL_NAME)
213
6d3724d3
DSH
214DECLARE_STACK_OF(ACCESS_DESCRIPTION)
215DECLARE_ASN1_SET_OF(ACCESS_DESCRIPTION)
216
d943e372 217typedef struct DIST_POINT_NAME_st {
9d6b1ce6
DSH
218int type;
219union {
220 GENERAL_NAMES *fullname;
221 STACK_OF(X509_NAME_ENTRY) *relativename;
222} name;
d943e372
DSH
223} DIST_POINT_NAME;
224
edc54021 225struct DIST_POINT_st {
d943e372
DSH
226DIST_POINT_NAME *distpoint;
227ASN1_BIT_STRING *reasons;
9d6b1ce6 228GENERAL_NAMES *CRLissuer;
edc54021 229};
d943e372 230
9d6b1ce6
DSH
231typedef STACK_OF(DIST_POINT) CRL_DIST_POINTS;
232
d943e372
DSH
233DECLARE_STACK_OF(DIST_POINT)
234DECLARE_ASN1_SET_OF(DIST_POINT)
235
edc54021 236struct AUTHORITY_KEYID_st {
f5fedc04 237ASN1_OCTET_STRING *keyid;
9d6b1ce6 238GENERAL_NAMES *issuer;
f5fedc04 239ASN1_INTEGER *serial;
edc54021 240};
f5fedc04 241
785cdf20 242/* Strong extranet structures */
142fcca8 243
0490a86d 244typedef struct SXNET_ID_st {
785cdf20
DSH
245 ASN1_INTEGER *zone;
246 ASN1_OCTET_STRING *user;
247} SXNETID;
142fcca8 248
cfdcfede
BL
249DECLARE_STACK_OF(SXNETID)
250DECLARE_ASN1_SET_OF(SXNETID)
251
252typedef struct SXNET_st {
253 ASN1_INTEGER *version;
254 STACK_OF(SXNETID) *ids;
255} SXNET;
256
c83e523d
DSH
257typedef struct NOTICEREF_st {
258 ASN1_STRING *organization;
abc9400e 259 STACK_OF(ASN1_INTEGER) *noticenos;
c83e523d
DSH
260} NOTICEREF;
261
262typedef struct USERNOTICE_st {
41b731f2 263 NOTICEREF *noticeref;
c83e523d
DSH
264 ASN1_STRING *exptext;
265} USERNOTICE;
266
267typedef struct POLICYQUALINFO_st {
268 ASN1_OBJECT *pqualid;
269 union {
270 ASN1_IA5STRING *cpsuri;
271 USERNOTICE *usernotice;
272 ASN1_TYPE *other;
273 } d;
274} POLICYQUALINFO;
275
276DECLARE_STACK_OF(POLICYQUALINFO)
41b731f2 277DECLARE_ASN1_SET_OF(POLICYQUALINFO)
c83e523d
DSH
278
279typedef struct POLICYINFO_st {
280 ASN1_OBJECT *policyid;
41b731f2 281 STACK_OF(POLICYQUALINFO) *qualifiers;
c83e523d
DSH
282} POLICYINFO;
283
9d6b1ce6
DSH
284typedef STACK_OF(POLICYINFO) CERTIFICATEPOLICIES;
285
6c5d4168
BM
286DECLARE_STACK_OF(POLICYINFO)
287DECLARE_ASN1_SET_OF(POLICYINFO)
c83e523d 288
a1d12dae
DSH
289typedef struct POLICY_MAPPING_st {
290 ASN1_OBJECT *issuerDomainPolicy;
291 ASN1_OBJECT *subjectDomainPolicy;
292} POLICY_MAPPING;
293
294DECLARE_STACK_OF(POLICY_MAPPING)
295
296typedef STACK_OF(POLICY_MAPPING) POLICY_MAPPINGS;
297
520b76ff
DSH
298typedef struct GENERAL_SUBTREE_st {
299 GENERAL_NAME *base;
300 ASN1_INTEGER *minimum;
301 ASN1_INTEGER *maximum;
302} GENERAL_SUBTREE;
303
304DECLARE_STACK_OF(GENERAL_SUBTREE)
305
306typedef struct NAME_CONSTRAINTS_st {
307 STACK_OF(GENERAL_SUBTREE) *permittedSubtrees;
308 STACK_OF(GENERAL_SUBTREE) *excludedSubtrees;
309} NAME_CONSTRAINTS;
310
f80153e2
DSH
311typedef struct POLICY_CONSTRAINTS_st {
312 ASN1_INTEGER *requireExplicitPolicy;
313 ASN1_INTEGER *inhibitPolicyMapping;
314} POLICY_CONSTRAINTS;
315
6951c23a
RL
316/* Proxy certificate structures, see RFC 3820 */
317typedef struct PROXY_POLICY_st
318 {
319 ASN1_OBJECT *policyLanguage;
320 ASN1_OCTET_STRING *policy;
321 } PROXY_POLICY;
322
323typedef struct PROXY_CERT_INFO_EXTENSION_st
324 {
325 ASN1_INTEGER *pcPathLengthConstraint;
326 PROXY_POLICY *proxyPolicy;
327 } PROXY_CERT_INFO_EXTENSION;
328
329DECLARE_ASN1_FUNCTIONS(PROXY_POLICY)
330DECLARE_ASN1_FUNCTIONS(PROXY_CERT_INFO_EXTENSION)
331
edc54021 332struct ISSUING_DIST_POINT_st
231493c9
DSH
333 {
334 DIST_POINT_NAME *distpoint;
335 int onlyuser;
336 int onlyCA;
337 ASN1_BIT_STRING *onlysomereasons;
338 int indirectCRL;
339 int onlyattr;
edc54021 340 };
6951c23a 341
4d50a2b4
DSH
342/* Values in idp_flags field */
343/* IDP present */
344#define IDP_PRESENT 0x1
345/* IDP values inconsistent */
346#define IDP_INVALID 0x2
347/* onlyuser true */
348#define IDP_ONLYUSER 0x4
349/* onlyCA true */
350#define IDP_ONLYCA 0x8
351/* onlyattr true */
352#define IDP_ONLYATTR 0x10
353/* indirectCRL true */
354#define IDP_INDIRECT 0x20
355/* onlysomereasons present */
356#define IDP_REASONS 0x40
357
9aeaf1b4
DSH
358#define X509V3_conf_err(val) ERR_add_error_data(6, "section:", val->section, \
359",name:", val->name, ",value:", val->value);
360
41b731f2
DSH
361#define X509V3_set_ctx_test(ctx) \
362 X509V3_set_ctx(ctx, NULL, NULL, NULL, NULL, CTX_TEST)
96bd6f73 363#define X509V3_set_ctx_nodb(ctx) (ctx)->db = NULL;
41b731f2 364
bb5ea36b 365#define EXT_BITSTRING(nid, table) { nid, 0, ASN1_ITEM_ref(ASN1_BIT_STRING), \
2aff7727
DSH
366 0,0,0,0, \
367 0,0, \
9aeaf1b4
DSH
368 (X509V3_EXT_I2V)i2v_ASN1_BIT_STRING, \
369 (X509V3_EXT_V2I)v2i_ASN1_BIT_STRING, \
79a474e8 370 NULL, NULL, \
2aff7727 371 table}
9aeaf1b4 372
bb5ea36b 373#define EXT_IA5STRING(nid) { nid, 0, ASN1_ITEM_ref(ASN1_IA5STRING), \
2aff7727 374 0,0,0,0, \
9aeaf1b4
DSH
375 (X509V3_EXT_I2S)i2s_ASN1_IA5STRING, \
376 (X509V3_EXT_S2I)s2i_ASN1_IA5STRING, \
2aff7727 377 0,0,0,0, \
9aeaf1b4
DSH
378 NULL}
379
2aff7727 380#define EXT_END { -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
9aeaf1b4 381
673b102c
DSH
382
383/* X509_PURPOSE stuff */
384
385#define EXFLAG_BCONS 0x1
386#define EXFLAG_KUSAGE 0x2
387#define EXFLAG_XKUSAGE 0x4
388#define EXFLAG_NSCERT 0x8
389
390#define EXFLAG_CA 0x10
db50661f
DSH
391/* Really self issued not necessarily self signed */
392#define EXFLAG_SI 0x20
673b102c
DSH
393#define EXFLAG_SS 0x20
394#define EXFLAG_V1 0x40
395#define EXFLAG_INVALID 0x80
396#define EXFLAG_SET 0x100
f1558bb4 397#define EXFLAG_CRITICAL 0x200
6951c23a 398#define EXFLAG_PROXY 0x400
673b102c 399
4acc3e90
DSH
400#define EXFLAG_INVALID_POLICY 0x400
401
673b102c
DSH
402#define KU_DIGITAL_SIGNATURE 0x0080
403#define KU_NON_REPUDIATION 0x0040
404#define KU_KEY_ENCIPHERMENT 0x0020
405#define KU_DATA_ENCIPHERMENT 0x0010
406#define KU_KEY_AGREEMENT 0x0008
407#define KU_KEY_CERT_SIGN 0x0004
408#define KU_CRL_SIGN 0x0002
409#define KU_ENCIPHER_ONLY 0x0001
410#define KU_DECIPHER_ONLY 0x8000
411
412#define NS_SSL_CLIENT 0x80
413#define NS_SSL_SERVER 0x40
414#define NS_SMIME 0x20
415#define NS_OBJSIGN 0x10
416#define NS_SSL_CA 0x04
417#define NS_SMIME_CA 0x02
418#define NS_OBJSIGN_CA 0x01
81f169e9 419#define NS_ANY_CA (NS_SSL_CA|NS_SMIME_CA|NS_OBJSIGN_CA)
673b102c
DSH
420
421#define XKU_SSL_SERVER 0x1
422#define XKU_SSL_CLIENT 0x2
423#define XKU_SMIME 0x4
424#define XKU_CODE_SIGN 0x8
425#define XKU_SGC 0x10
81f169e9
DSH
426#define XKU_OCSP_SIGN 0x20
427#define XKU_TIMESTAMP 0x40
b637670f 428#define XKU_DVCS 0x80
673b102c 429
79875776
BM
430#define X509_PURPOSE_DYNAMIC 0x1
431#define X509_PURPOSE_DYNAMIC_NAME 0x2
432
673b102c 433typedef struct x509_purpose_st {
13938ace
DSH
434 int purpose;
435 int trust; /* Default trust ID */
436 int flags;
ccd86b68
GT
437 int (*check_purpose)(const struct x509_purpose_st *,
438 const X509 *, int);
13938ace
DSH
439 char *name;
440 char *sname;
d4cec6a1 441 void *usr_data;
673b102c
DSH
442} X509_PURPOSE;
443
d4cec6a1
DSH
444#define X509_PURPOSE_SSL_CLIENT 1
445#define X509_PURPOSE_SSL_SERVER 2
446#define X509_PURPOSE_NS_SSL_SERVER 3
447#define X509_PURPOSE_SMIME_SIGN 4
448#define X509_PURPOSE_SMIME_ENCRYPT 5
449#define X509_PURPOSE_CRL_SIGN 6
068fdce8 450#define X509_PURPOSE_ANY 7
81f169e9 451#define X509_PURPOSE_OCSP_HELPER 8
c7235be6 452#define X509_PURPOSE_TIMESTAMP_SIGN 9
673b102c 453
dd413410 454#define X509_PURPOSE_MIN 1
c7235be6 455#define X509_PURPOSE_MAX 9
dd413410 456
8ca533e3
DSH
457/* Flags for X509V3_EXT_print() */
458
459#define X509V3_EXT_UNKNOWN_MASK (0xfL << 16)
460/* Return error for unknown extensions */
461#define X509V3_EXT_DEFAULT 0
462/* Print error for unknown extensions */
463#define X509V3_EXT_ERROR_UNKNOWN (1L << 16)
464/* ASN1 parse unknown extensions */
465#define X509V3_EXT_PARSE_UNKNOWN (2L << 16)
466/* BIO_dump unknown extensions */
467#define X509V3_EXT_DUMP_UNKNOWN (3L << 16)
468
57d2f217
DSH
469/* Flags for X509V3_add1_i2d */
470
471#define X509V3_ADD_OP_MASK 0xfL
472#define X509V3_ADD_DEFAULT 0L
473#define X509V3_ADD_APPEND 1L
474#define X509V3_ADD_REPLACE 2L
475#define X509V3_ADD_REPLACE_EXISTING 3L
476#define X509V3_ADD_KEEP_EXISTING 4L
477#define X509V3_ADD_DELETE 5L
478#define X509V3_ADD_SILENT 0x10
479
d4cec6a1 480DECLARE_STACK_OF(X509_PURPOSE)
673b102c 481
2aff7727 482DECLARE_ASN1_FUNCTIONS(BASIC_CONSTRAINTS)
9aeaf1b4 483
9d6b1ce6
DSH
484DECLARE_ASN1_FUNCTIONS(SXNET)
485DECLARE_ASN1_FUNCTIONS(SXNETID)
785cdf20 486
61f5b6f3
BL
487int SXNET_add_id_asc(SXNET **psx, char *zone, char *user, int userlen);
488int SXNET_add_id_ulong(SXNET **psx, unsigned long lzone, char *user, int userlen);
489int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *izone, char *user, int userlen);
28a98809
DSH
490
491ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone);
492ASN1_OCTET_STRING *SXNET_get_id_ulong(SXNET *sx, unsigned long lzone);
493ASN1_OCTET_STRING *SXNET_get_id_INTEGER(SXNET *sx, ASN1_INTEGER *zone);
494
9d6b1ce6
DSH
495DECLARE_ASN1_FUNCTIONS(AUTHORITY_KEYID)
496
497DECLARE_ASN1_FUNCTIONS(PKEY_USAGE_PERIOD)
498
499DECLARE_ASN1_FUNCTIONS(GENERAL_NAME)
c7235be6
UM
500GENERAL_NAME *GENERAL_NAME_dup(GENERAL_NAME *a);
501int GENERAL_NAME_cmp(GENERAL_NAME *a, GENERAL_NAME *b);
502
9d6b1ce6 503
5d6383c8
DSH
504
505ASN1_BIT_STRING *v2i_ASN1_BIT_STRING(X509V3_EXT_METHOD *method,
506 X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval);
507STACK_OF(CONF_VALUE) *i2v_ASN1_BIT_STRING(X509V3_EXT_METHOD *method,
508 ASN1_BIT_STRING *bits,
509 STACK_OF(CONF_VALUE) *extlist);
510
9d6b1ce6 511STACK_OF(CONF_VALUE) *i2v_GENERAL_NAME(X509V3_EXT_METHOD *method, GENERAL_NAME *gen, STACK_OF(CONF_VALUE) *ret);
2c15d426 512int GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen);
175b0942 513
9d6b1ce6 514DECLARE_ASN1_FUNCTIONS(GENERAL_NAMES)
0be9747b 515
ba404b5e 516STACK_OF(CONF_VALUE) *i2v_GENERAL_NAMES(X509V3_EXT_METHOD *method,
9d6b1ce6
DSH
517 GENERAL_NAMES *gen, STACK_OF(CONF_VALUE) *extlist);
518GENERAL_NAMES *v2i_GENERAL_NAMES(X509V3_EXT_METHOD *method,
ba404b5e 519 X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval);
142fcca8 520
9d6b1ce6
DSH
521DECLARE_ASN1_FUNCTIONS(OTHERNAME)
522DECLARE_ASN1_FUNCTIONS(EDIPARTYNAME)
c7235be6 523int OTHERNAME_cmp(OTHERNAME *a, OTHERNAME *b);
a5cdb7d5
DSH
524void GENERAL_NAME_set0_value(GENERAL_NAME *a, int type, void *value);
525void *GENERAL_NAME_get0_value(GENERAL_NAME *a, int *ptype);
526int GENERAL_NAME_set0_othername(GENERAL_NAME *gen,
527 ASN1_OBJECT *oid, ASN1_TYPE *value);
528int GENERAL_NAME_get0_otherName(GENERAL_NAME *gen,
529 ASN1_OBJECT **poid, ASN1_TYPE **pvalue);
a716d727 530
175b0942
DSH
531char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, ASN1_OCTET_STRING *ia5);
532ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str);
142fcca8 533
9d6b1ce6 534DECLARE_ASN1_FUNCTIONS(EXTENDED_KEY_USAGE)
eb64730b 535int i2a_ACCESS_DESCRIPTION(BIO *bp, ACCESS_DESCRIPTION* a);
6d3724d3 536
9d6b1ce6
DSH
537DECLARE_ASN1_FUNCTIONS(CERTIFICATEPOLICIES)
538DECLARE_ASN1_FUNCTIONS(POLICYINFO)
539DECLARE_ASN1_FUNCTIONS(POLICYQUALINFO)
540DECLARE_ASN1_FUNCTIONS(USERNOTICE)
541DECLARE_ASN1_FUNCTIONS(NOTICEREF)
6d3724d3 542
9d6b1ce6
DSH
543DECLARE_ASN1_FUNCTIONS(CRL_DIST_POINTS)
544DECLARE_ASN1_FUNCTIONS(DIST_POINT)
545DECLARE_ASN1_FUNCTIONS(DIST_POINT_NAME)
8eb72175 546DECLARE_ASN1_FUNCTIONS(ISSUING_DIST_POINT)
6d3724d3 547
9d6b1ce6
DSH
548DECLARE_ASN1_FUNCTIONS(ACCESS_DESCRIPTION)
549DECLARE_ASN1_FUNCTIONS(AUTHORITY_INFO_ACCESS)
6d3724d3 550
a1d12dae 551DECLARE_ASN1_ITEM(POLICY_MAPPING)
ea3675b5 552DECLARE_ASN1_ALLOC_FUNCTIONS(POLICY_MAPPING)
a1d12dae
DSH
553DECLARE_ASN1_ITEM(POLICY_MAPPINGS)
554
520b76ff
DSH
555DECLARE_ASN1_ITEM(GENERAL_SUBTREE)
556DECLARE_ASN1_ALLOC_FUNCTIONS(GENERAL_SUBTREE)
557
558DECLARE_ASN1_ITEM(NAME_CONSTRAINTS)
559DECLARE_ASN1_ALLOC_FUNCTIONS(NAME_CONSTRAINTS)
560
f80153e2
DSH
561DECLARE_ASN1_ALLOC_FUNCTIONS(POLICY_CONSTRAINTS)
562DECLARE_ASN1_ITEM(POLICY_CONSTRAINTS)
563
be86c7fc
DSH
564GENERAL_NAME *a2i_GENERAL_NAME(GENERAL_NAME *out,
565 X509V3_EXT_METHOD *method, X509V3_CTX *ctx,
566 int gen_type, char *value, int is_nc);
567
9aeaf1b4 568#ifdef HEADER_CONF_H
520b76ff
DSH
569GENERAL_NAME *v2i_GENERAL_NAME(X509V3_EXT_METHOD *method, X509V3_CTX *ctx,
570 CONF_VALUE *cnf);
571GENERAL_NAME *v2i_GENERAL_NAME_ex(GENERAL_NAME *out, X509V3_EXT_METHOD *method,
572 X509V3_CTX *ctx, CONF_VALUE *cnf, int is_nc);
9aeaf1b4 573void X509V3_conf_free(CONF_VALUE *val);
b7a26e6d
DSH
574
575X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, char *value);
576X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name, char *value);
577int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, STACK_OF(X509_EXTENSION) **sk);
578int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509 *cert);
579int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req);
580int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl);
581
3c1d6bbc
BL
582X509_EXTENSION *X509V3_EXT_conf_nid(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
583 int ext_nid, char *value);
584X509_EXTENSION *X509V3_EXT_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
585 char *name, char *value);
586int X509V3_EXT_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
587 char *section, X509 *cert);
588int X509V3_EXT_REQ_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
589 char *section, X509_REQ *req);
590int X509V3_EXT_CRL_add_conf(LHASH_OF(CONF_VALUE) *conf, X509V3_CTX *ctx,
591 char *section, X509_CRL *crl);
b7a26e6d 592
ba404b5e 593int X509V3_add_value_bool_nf(char *name, int asn1_bool,
3c1d6bbc 594 STACK_OF(CONF_VALUE) **extlist);
9aeaf1b4
DSH
595int X509V3_get_value_bool(CONF_VALUE *value, int *asn1_bool);
596int X509V3_get_value_int(CONF_VALUE *value, ASN1_INTEGER **aint);
b7a26e6d 597void X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf);
3c1d6bbc 598void X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH_OF(CONF_VALUE) *lhash);
9aeaf1b4
DSH
599#endif
600
1d48dd00 601char * X509V3_get_string(X509V3_CTX *ctx, char *name, char *section);
ba404b5e 602STACK_OF(CONF_VALUE) * X509V3_get_section(X509V3_CTX *ctx, char *section);
41b731f2 603void X509V3_string_free(X509V3_CTX *ctx, char *str);
ba404b5e 604void X509V3_section_free( X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section);
1d48dd00
DSH
605void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subject,
606 X509_REQ *req, X509_CRL *crl, int flags);
607
ba404b5e
DSH
608int X509V3_add_value(const char *name, const char *value,
609 STACK_OF(CONF_VALUE) **extlist);
61f5b6f3 610int X509V3_add_value_uchar(const char *name, const unsigned char *value,
ba404b5e
DSH
611 STACK_OF(CONF_VALUE) **extlist);
612int X509V3_add_value_bool(const char *name, int asn1_bool,
613 STACK_OF(CONF_VALUE) **extlist);
614int X509V3_add_value_int(const char *name, ASN1_INTEGER *aint,
615 STACK_OF(CONF_VALUE) **extlist);
0ca5f8b1 616char * i2s_ASN1_INTEGER(X509V3_EXT_METHOD *meth, ASN1_INTEGER *aint);
28a98809 617ASN1_INTEGER * s2i_ASN1_INTEGER(X509V3_EXT_METHOD *meth, char *value);
c74f1eb9
DSH
618char * i2s_ASN1_ENUMERATED(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint);
619char * i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint);
9aeaf1b4 620int X509V3_EXT_add(X509V3_EXT_METHOD *ext);
397f7038 621int X509V3_EXT_add_list(X509V3_EXT_METHOD *extlist);
9aeaf1b4
DSH
622int X509V3_EXT_add_alias(int nid_to, int nid_from);
623void X509V3_EXT_cleanup(void);
624
625X509V3_EXT_METHOD *X509V3_EXT_get(X509_EXTENSION *ext);
626X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid);
627int X509V3_add_standard_extensions(void);
535d79da 628STACK_OF(CONF_VALUE) *X509V3_parse_list(const char *line);
f5fedc04 629void *X509V3_EXT_d2i(X509_EXTENSION *ext);
4654ef98 630void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx);
4654ef98 631
57d2f217 632
c8b41850 633X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc);
28ddfc61 634int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value, int crit, unsigned long flags);
9aeaf1b4 635
376bf1d4
DSH
636char *hex_to_string(const unsigned char *buffer, long len);
637unsigned char *string_to_hex(const char *str, long *len);
e778802f 638int name_cmp(const char *name, const char *cmp);
175b0942 639
ba404b5e
DSH
640void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
641 int ml);
8ca533e3 642int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent);
785cdf20 643int X509V3_EXT_print_fp(FILE *out, X509_EXTENSION *ext, int flag, int indent);
9aeaf1b4 644
2c15d426
DSH
645int X509V3_extensions_print(BIO *out, char *title, STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent);
646
30b415b0 647int X509_check_ca(X509 *x);
673b102c 648int X509_check_purpose(X509 *x, int id, int ca);
f1558bb4 649int X509_supported_extension(X509_EXTENSION *ex);
926a56bf 650int X509_PURPOSE_set(int *p, int purpose);
2f043896 651int X509_check_issued(X509 *issuer, X509 *subject);
bc7535bc 652int X509_check_akid(X509 *issuer, AUTHORITY_KEYID *akid);
d4cec6a1 653int X509_PURPOSE_get_count(void);
6d0d5431 654X509_PURPOSE * X509_PURPOSE_get0(int idx);
d4cec6a1
DSH
655int X509_PURPOSE_get_by_sname(char *sname);
656int X509_PURPOSE_get_by_id(int id);
dd413410 657int X509_PURPOSE_add(int id, int trust, int flags,
ccd86b68 658 int (*ck)(const X509_PURPOSE *, const X509 *, int),
dd413410 659 char *name, char *sname, void *arg);
c7cb16a8
DSH
660char *X509_PURPOSE_get0_name(X509_PURPOSE *xp);
661char *X509_PURPOSE_get0_sname(X509_PURPOSE *xp);
d4cec6a1 662int X509_PURPOSE_get_trust(X509_PURPOSE *xp);
79875776 663void X509_PURPOSE_cleanup(void);
673b102c 664int X509_PURPOSE_get_id(X509_PURPOSE *);
673b102c 665
5ce278a7
BL
666STACK_OF(STRING) *X509_get1_email(X509 *x);
667STACK_OF(STRING) *X509_REQ_get1_email(X509_REQ *x);
668void X509_email_free(STACK_OF(STRING) *sk);
669STACK_OF(STRING) *X509_get1_ocsp(X509 *x);
a91dedca 670
4e5d3a7f 671ASN1_OCTET_STRING *a2i_IPADDRESS(const char *ipasc);
520b76ff 672ASN1_OCTET_STRING *a2i_IPADDRESS_NC(const char *ipasc);
96ea4ae9 673int a2i_ipadd(unsigned char *ipout, const char *ipasc);
f0dc08e6
DSH
674int X509V3_NAME_from_section(X509_NAME *nm, STACK_OF(CONF_VALUE)*dn_sk,
675 unsigned long chtype);
a91dedca 676
ecf13991 677void X509_POLICY_NODE_print(BIO *out, X509_POLICY_NODE *node, int indent);
3c07d3a3 678DECLARE_STACK_OF(X509_POLICY_NODE)
ecf13991 679
d137b56a 680#ifndef OPENSSL_NO_RFC3779
96ea4ae9
BL
681
682typedef struct ASRange_st {
683 ASN1_INTEGER *min, *max;
684} ASRange;
685
686#define ASIdOrRange_id 0
687#define ASIdOrRange_range 1
688
689typedef struct ASIdOrRange_st {
690 int type;
691 union {
692 ASN1_INTEGER *id;
693 ASRange *range;
694 } u;
695} ASIdOrRange;
696
697typedef STACK_OF(ASIdOrRange) ASIdOrRanges;
698DECLARE_STACK_OF(ASIdOrRange)
699
700#define ASIdentifierChoice_inherit 0
701#define ASIdentifierChoice_asIdsOrRanges 1
702
703typedef struct ASIdentifierChoice_st {
704 int type;
705 union {
706 ASN1_NULL *inherit;
707 ASIdOrRanges *asIdsOrRanges;
708 } u;
709} ASIdentifierChoice;
710
711typedef struct ASIdentifiers_st {
712 ASIdentifierChoice *asnum, *rdi;
713} ASIdentifiers;
714
715DECLARE_ASN1_FUNCTIONS(ASRange)
716DECLARE_ASN1_FUNCTIONS(ASIdOrRange)
717DECLARE_ASN1_FUNCTIONS(ASIdentifierChoice)
718DECLARE_ASN1_FUNCTIONS(ASIdentifiers)
719
720
721typedef struct IPAddressRange_st {
722 ASN1_BIT_STRING *min, *max;
723} IPAddressRange;
724
725#define IPAddressOrRange_addressPrefix 0
726#define IPAddressOrRange_addressRange 1
727
728typedef struct IPAddressOrRange_st {
729 int type;
730 union {
731 ASN1_BIT_STRING *addressPrefix;
732 IPAddressRange *addressRange;
733 } u;
734} IPAddressOrRange;
735
736typedef STACK_OF(IPAddressOrRange) IPAddressOrRanges;
737DECLARE_STACK_OF(IPAddressOrRange)
738
739#define IPAddressChoice_inherit 0
740#define IPAddressChoice_addressesOrRanges 1
741
742typedef struct IPAddressChoice_st {
743 int type;
744 union {
745 ASN1_NULL *inherit;
746 IPAddressOrRanges *addressesOrRanges;
747 } u;
748} IPAddressChoice;
749
750typedef struct IPAddressFamily_st {
751 ASN1_OCTET_STRING *addressFamily;
752 IPAddressChoice *ipAddressChoice;
753} IPAddressFamily;
754
755typedef STACK_OF(IPAddressFamily) IPAddrBlocks;
756DECLARE_STACK_OF(IPAddressFamily)
757
758DECLARE_ASN1_FUNCTIONS(IPAddressRange)
759DECLARE_ASN1_FUNCTIONS(IPAddressOrRange)
760DECLARE_ASN1_FUNCTIONS(IPAddressChoice)
761DECLARE_ASN1_FUNCTIONS(IPAddressFamily)
762
763/*
764 * API tag for elements of the ASIdentifer SEQUENCE.
765 */
766#define V3_ASID_ASNUM 0
767#define V3_ASID_RDI 1
768
769/*
770 * AFI values, assigned by IANA. It'd be nice to make the AFI
771 * handling code totally generic, but there are too many little things
772 * that would need to be defined for other address families for it to
773 * be worth the trouble.
774 */
775#define IANA_AFI_IPV4 1
776#define IANA_AFI_IPV6 2
777
778/*
779 * Utilities to construct and extract values from RFC3779 extensions,
780 * since some of the encodings (particularly for IP address prefixes
781 * and ranges) are a bit tedious to work with directly.
782 */
783int v3_asid_add_inherit(ASIdentifiers *asid, int which);
784int v3_asid_add_id_or_range(ASIdentifiers *asid, int which,
785 ASN1_INTEGER *min, ASN1_INTEGER *max);
786int v3_addr_add_inherit(IPAddrBlocks *addr,
787 const unsigned afi, const unsigned *safi);
788int v3_addr_add_prefix(IPAddrBlocks *addr,
789 const unsigned afi, const unsigned *safi,
790 unsigned char *a, const int prefixlen);
791int v3_addr_add_range(IPAddrBlocks *addr,
792 const unsigned afi, const unsigned *safi,
793 unsigned char *min, unsigned char *max);
794unsigned v3_addr_get_afi(const IPAddressFamily *f);
795int v3_addr_get_range(IPAddressOrRange *aor, const unsigned afi,
796 unsigned char *min, unsigned char *max,
797 const int length);
798
799/*
800 * Canonical forms.
801 */
802int v3_asid_is_canonical(ASIdentifiers *asid);
803int v3_addr_is_canonical(IPAddrBlocks *addr);
804int v3_asid_canonize(ASIdentifiers *asid);
805int v3_addr_canonize(IPAddrBlocks *addr);
806
807/*
808 * Tests for inheritance and containment.
809 */
810int v3_asid_inherits(ASIdentifiers *asid);
811int v3_addr_inherits(IPAddrBlocks *addr);
812int v3_asid_subset(ASIdentifiers *a, ASIdentifiers *b);
813int v3_addr_subset(IPAddrBlocks *a, IPAddrBlocks *b);
814
815/*
816 * Check whether RFC 3779 extensions nest properly in chains.
817 */
818int v3_asid_validate_path(X509_STORE_CTX *);
819int v3_addr_validate_path(X509_STORE_CTX *);
820int v3_asid_validate_resource_set(STACK_OF(X509) *chain,
821 ASIdentifiers *ext,
822 int allow_inheritance);
823int v3_addr_validate_resource_set(STACK_OF(X509) *chain,
824 IPAddrBlocks *ext,
825 int allow_inheritance);
826
10ca15f3 827#endif /* OPENSSL_NO_RFC3779 */
96ea4ae9 828
9aeaf1b4 829/* BEGIN ERROR CODES */
6d311938
DSH
830/* The following lines are auto generated by the script mkerr.pl. Any changes
831 * made after this point may be overwritten when the script is next run.
832 */
926a56bf 833void ERR_load_X509V3_strings(void);
6d311938 834
9aeaf1b4
DSH
835/* Error codes for the X509V3 functions. */
836
837/* Function codes. */
be86c7fc 838#define X509V3_F_A2I_GENERAL_NAME 164
96ea4ae9
BL
839#define X509V3_F_ASIDENTIFIERCHOICE_CANONIZE 161
840#define X509V3_F_ASIDENTIFIERCHOICE_IS_CANONICAL 162
aa066b9e
DSH
841#define X509V3_F_COPY_EMAIL 122
842#define X509V3_F_COPY_ISSUER 123
f0dc08e6 843#define X509V3_F_DO_DIRNAME 144
aa066b9e 844#define X509V3_F_DO_EXT_CONF 124
c8b41850 845#define X509V3_F_DO_EXT_I2D 135
8afca8d9 846#define X509V3_F_DO_EXT_NCONF 151
520b76ff 847#define X509V3_F_DO_I2V_NAME_CONSTRAINTS 148
0745d089 848#define X509V3_F_GNAMES_FROM_SECTNAME 156
175b0942 849#define X509V3_F_HEX_TO_STRING 111
c74f1eb9 850#define X509V3_F_I2S_ASN1_ENUMERATED 121
a0e7c8ee 851#define X509V3_F_I2S_ASN1_IA5STRING 149
0ca5f8b1 852#define X509V3_F_I2S_ASN1_INTEGER 120
6d3724d3 853#define X509V3_F_I2V_AUTHORITY_INFO_ACCESS 138
3edd7ed1
DSH
854#define X509V3_F_NOTICE_SECTION 132
855#define X509V3_F_NREF_NOS 133
856#define X509V3_F_POLICY_SECTION 131
8afca8d9 857#define X509V3_F_PROCESS_PCI_VALUE 150
41b731f2 858#define X509V3_F_R2I_CERTPOL 130
51eb1b81 859#define X509V3_F_R2I_PCI 155
9aeaf1b4 860#define X509V3_F_S2I_ASN1_IA5STRING 100
28a98809 861#define X509V3_F_S2I_ASN1_INTEGER 108
175b0942
DSH
862#define X509V3_F_S2I_ASN1_OCTET_STRING 112
863#define X509V3_F_S2I_ASN1_SKEY_ID 114
8afca8d9 864#define X509V3_F_S2I_SKEY_ID 115
51eb1b81 865#define X509V3_F_SET_DIST_POINT_NAME 158
175b0942 866#define X509V3_F_STRING_TO_HEX 113
8afca8d9 867#define X509V3_F_SXNET_ADD_ID_ASC 125
28a98809
DSH
868#define X509V3_F_SXNET_ADD_ID_INTEGER 126
869#define X509V3_F_SXNET_ADD_ID_ULONG 127
870#define X509V3_F_SXNET_GET_ID_ASC 128
871#define X509V3_F_SXNET_GET_ID_ULONG 129
96ea4ae9 872#define X509V3_F_V2I_ASIDENTIFIERS 163
9aeaf1b4 873#define X509V3_F_V2I_ASN1_BIT_STRING 101
8afca8d9 874#define X509V3_F_V2I_AUTHORITY_INFO_ACCESS 139
0be9747b 875#define X509V3_F_V2I_AUTHORITY_KEYID 119
9aeaf1b4 876#define X509V3_F_V2I_BASIC_CONSTRAINTS 102
d943e372 877#define X509V3_F_V2I_CRLD 134
8afca8d9 878#define X509V3_F_V2I_EXTENDED_KEY_USAGE 103
d08d8da4 879#define X509V3_F_V2I_GENERAL_NAMES 118
8afca8d9 880#define X509V3_F_V2I_GENERAL_NAME_EX 117
0537f968 881#define X509V3_F_V2I_IDP 157
96ea4ae9 882#define X509V3_F_V2I_IPADDRBLOCKS 159
8afca8d9 883#define X509V3_F_V2I_ISSUER_ALT 153
520b76ff 884#define X509V3_F_V2I_NAME_CONSTRAINTS 147
f80153e2 885#define X509V3_F_V2I_POLICY_CONSTRAINTS 146
a1d12dae 886#define X509V3_F_V2I_POLICY_MAPPINGS 145
8afca8d9 887#define X509V3_F_V2I_SUBJECT_ALT 154
96ea4ae9 888#define X509V3_F_V3_ADDR_VALIDATE_PATH_INTERNAL 160
5236efdb 889#define X509V3_F_V3_GENERIC_EXTENSION 116
8afca8d9 890#define X509V3_F_X509V3_ADD1_I2D 140
9aeaf1b4 891#define X509V3_F_X509V3_ADD_VALUE 105
41b731f2 892#define X509V3_F_X509V3_EXT_ADD 104
9aeaf1b4
DSH
893#define X509V3_F_X509V3_EXT_ADD_ALIAS 106
894#define X509V3_F_X509V3_EXT_CONF 107
c8b41850 895#define X509V3_F_X509V3_EXT_I2D 136
8afca8d9 896#define X509V3_F_X509V3_EXT_NCONF 152
f0dc08e6
DSH
897#define X509V3_F_X509V3_GET_SECTION 142
898#define X509V3_F_X509V3_GET_STRING 143
28a98809 899#define X509V3_F_X509V3_GET_VALUE_BOOL 110
41b731f2 900#define X509V3_F_X509V3_PARSE_LIST 109
79875776 901#define X509V3_F_X509_PURPOSE_ADD 137
926a56bf 902#define X509V3_F_X509_PURPOSE_SET 141
9aeaf1b4
DSH
903
904/* Reason codes. */
d08d8da4
DSH
905#define X509V3_R_BAD_IP_ADDRESS 118
906#define X509V3_R_BAD_OBJECT 119
9aeaf1b4
DSH
907#define X509V3_R_BN_DEC2BN_ERROR 100
908#define X509V3_R_BN_TO_ASN1_INTEGER_ERROR 101
f0dc08e6 909#define X509V3_R_DIRNAME_ERROR 149
0745d089 910#define X509V3_R_DISTPOINT_ALREADY_SET 160
28a98809
DSH
911#define X509V3_R_DUPLICATE_ZONE_ID 133
912#define X509V3_R_ERROR_CONVERTING_ZONE 131
57d2f217 913#define X509V3_R_ERROR_CREATING_EXTENSION 144
aa066b9e 914#define X509V3_R_ERROR_IN_EXTENSION 128
3edd7ed1 915#define X509V3_R_EXPECTED_A_SECTION_NAME 137
57d2f217 916#define X509V3_R_EXTENSION_EXISTS 145
5236efdb 917#define X509V3_R_EXTENSION_NAME_ERROR 115
9aeaf1b4
DSH
918#define X509V3_R_EXTENSION_NOT_FOUND 102
919#define X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED 103
5236efdb 920#define X509V3_R_EXTENSION_VALUE_ERROR 116
f80153e2 921#define X509V3_R_ILLEGAL_EMPTY_EXTENSION 151
175b0942 922#define X509V3_R_ILLEGAL_HEX_DIGIT 113
6951c23a 923#define X509V3_R_INCORRECT_POLICY_SYNTAX_TAG 152
0745d089 924#define X509V3_R_INVAID_MULTIPLE_RDNS 161
96ea4ae9
BL
925#define X509V3_R_INVALID_ASNUMBER 162
926#define X509V3_R_INVALID_ASRANGE 163
9aeaf1b4
DSH
927#define X509V3_R_INVALID_BOOLEAN_STRING 104
928#define X509V3_R_INVALID_EXTENSION_STRING 105
96ea4ae9
BL
929#define X509V3_R_INVALID_INHERITANCE 165
930#define X509V3_R_INVALID_IPADDRESS 166
9aeaf1b4
DSH
931#define X509V3_R_INVALID_NAME 106
932#define X509V3_R_INVALID_NULL_ARGUMENT 107
933#define X509V3_R_INVALID_NULL_NAME 108
934#define X509V3_R_INVALID_NULL_VALUE 109
3edd7ed1
DSH
935#define X509V3_R_INVALID_NUMBER 140
936#define X509V3_R_INVALID_NUMBERS 141
9aeaf1b4 937#define X509V3_R_INVALID_OBJECT_IDENTIFIER 110
3edd7ed1 938#define X509V3_R_INVALID_OPTION 138
41b731f2 939#define X509V3_R_INVALID_POLICY_IDENTIFIER 134
6951c23a 940#define X509V3_R_INVALID_PROXY_POLICY_SETTING 153
926a56bf 941#define X509V3_R_INVALID_PURPOSE 146
96ea4ae9 942#define X509V3_R_INVALID_SAFI 164
41b731f2 943#define X509V3_R_INVALID_SECTION 135
6d3724d3 944#define X509V3_R_INVALID_SYNTAX 143
aa066b9e
DSH
945#define X509V3_R_ISSUER_DECODE_ERROR 126
946#define X509V3_R_MISSING_VALUE 124
3edd7ed1 947#define X509V3_R_NEED_ORGANIZATION_AND_NUMBERS 142
41b731f2 948#define X509V3_R_NO_CONFIG_DATABASE 136
0be9747b 949#define X509V3_R_NO_ISSUER_CERTIFICATE 121
aa066b9e 950#define X509V3_R_NO_ISSUER_DETAILS 127
3edd7ed1 951#define X509V3_R_NO_POLICY_IDENTIFIER 139
6951c23a 952#define X509V3_R_NO_PROXY_CERT_POLICY_LANGUAGE_DEFINED 154
175b0942 953#define X509V3_R_NO_PUBLIC_KEY 114
aa066b9e 954#define X509V3_R_NO_SUBJECT_DETAILS 125
175b0942 955#define X509V3_R_ODD_NUMBER_OF_DIGITS 112
f0dc08e6 956#define X509V3_R_OPERATION_NOT_DEFINED 148
9ea1b878 957#define X509V3_R_OTHERNAME_ERROR 147
6951c23a
RL
958#define X509V3_R_POLICY_LANGUAGE_ALREADTY_DEFINED 155
959#define X509V3_R_POLICY_PATH_LENGTH 156
960#define X509V3_R_POLICY_PATH_LENGTH_ALREADTY_DEFINED 157
961#define X509V3_R_POLICY_SYNTAX_NOT_CURRENTLY_SUPPORTED 158
a7201e9a 962#define X509V3_R_POLICY_WHEN_PROXY_LANGUAGE_REQUIRES_NO_POLICY 159
f0dc08e6 963#define X509V3_R_SECTION_NOT_FOUND 150
0be9747b
DSH
964#define X509V3_R_UNABLE_TO_GET_ISSUER_DETAILS 122
965#define X509V3_R_UNABLE_TO_GET_ISSUER_KEYID 123
9aeaf1b4 966#define X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT 111
aa066b9e
DSH
967#define X509V3_R_UNKNOWN_EXTENSION 129
968#define X509V3_R_UNKNOWN_EXTENSION_NAME 130
0be9747b 969#define X509V3_R_UNKNOWN_OPTION 120
d08d8da4 970#define X509V3_R_UNSUPPORTED_OPTION 117
be86c7fc 971#define X509V3_R_UNSUPPORTED_TYPE 167
28a98809 972#define X509V3_R_USER_TOO_LONG 132
6d311938 973
9aeaf1b4
DSH
974#ifdef __cplusplus
975}
976#endif
977#endif