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