1*0Sstevel@tonic-gate /* x509v3.h */ 2*0Sstevel@tonic-gate /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL 3*0Sstevel@tonic-gate * project 1999. 4*0Sstevel@tonic-gate */ 5*0Sstevel@tonic-gate /* ==================================================================== 6*0Sstevel@tonic-gate * Copyright (c) 1999 The OpenSSL Project. All rights reserved. 7*0Sstevel@tonic-gate * 8*0Sstevel@tonic-gate * Redistribution and use in source and binary forms, with or without 9*0Sstevel@tonic-gate * modification, are permitted provided that the following conditions 10*0Sstevel@tonic-gate * are met: 11*0Sstevel@tonic-gate * 12*0Sstevel@tonic-gate * 1. Redistributions of source code must retain the above copyright 13*0Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer. 14*0Sstevel@tonic-gate * 15*0Sstevel@tonic-gate * 2. Redistributions in binary form must reproduce the above copyright 16*0Sstevel@tonic-gate * notice, this list of conditions and the following disclaimer in 17*0Sstevel@tonic-gate * the documentation and/or other materials provided with the 18*0Sstevel@tonic-gate * distribution. 19*0Sstevel@tonic-gate * 20*0Sstevel@tonic-gate * 3. All advertising materials mentioning features or use of this 21*0Sstevel@tonic-gate * software must display the following acknowledgment: 22*0Sstevel@tonic-gate * "This product includes software developed by the OpenSSL Project 23*0Sstevel@tonic-gate * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 24*0Sstevel@tonic-gate * 25*0Sstevel@tonic-gate * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to 26*0Sstevel@tonic-gate * endorse or promote products derived from this software without 27*0Sstevel@tonic-gate * prior written permission. For written permission, please contact 28*0Sstevel@tonic-gate * licensing@OpenSSL.org. 29*0Sstevel@tonic-gate * 30*0Sstevel@tonic-gate * 5. Products derived from this software may not be called "OpenSSL" 31*0Sstevel@tonic-gate * nor may "OpenSSL" appear in their names without prior written 32*0Sstevel@tonic-gate * permission of the OpenSSL Project. 33*0Sstevel@tonic-gate * 34*0Sstevel@tonic-gate * 6. Redistributions of any form whatsoever must retain the following 35*0Sstevel@tonic-gate * acknowledgment: 36*0Sstevel@tonic-gate * "This product includes software developed by the OpenSSL Project 37*0Sstevel@tonic-gate * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" 38*0Sstevel@tonic-gate * 39*0Sstevel@tonic-gate * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY 40*0Sstevel@tonic-gate * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 41*0Sstevel@tonic-gate * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 42*0Sstevel@tonic-gate * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR 43*0Sstevel@tonic-gate * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 44*0Sstevel@tonic-gate * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 45*0Sstevel@tonic-gate * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 46*0Sstevel@tonic-gate * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 47*0Sstevel@tonic-gate * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 48*0Sstevel@tonic-gate * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 49*0Sstevel@tonic-gate * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 50*0Sstevel@tonic-gate * OF THE POSSIBILITY OF SUCH DAMAGE. 51*0Sstevel@tonic-gate * ==================================================================== 52*0Sstevel@tonic-gate * 53*0Sstevel@tonic-gate * This product includes cryptographic software written by Eric Young 54*0Sstevel@tonic-gate * (eay@cryptsoft.com). This product includes software written by Tim 55*0Sstevel@tonic-gate * Hudson (tjh@cryptsoft.com). 56*0Sstevel@tonic-gate * 57*0Sstevel@tonic-gate */ 58*0Sstevel@tonic-gate #ifndef HEADER_X509V3_H 59*0Sstevel@tonic-gate #define HEADER_X509V3_H 60*0Sstevel@tonic-gate 61*0Sstevel@tonic-gate #include <openssl/bio.h> 62*0Sstevel@tonic-gate #include <openssl/x509.h> 63*0Sstevel@tonic-gate #include <openssl/conf.h> 64*0Sstevel@tonic-gate 65*0Sstevel@tonic-gate #ifdef __cplusplus 66*0Sstevel@tonic-gate extern "C" { 67*0Sstevel@tonic-gate #endif 68*0Sstevel@tonic-gate 69*0Sstevel@tonic-gate /* Forward reference */ 70*0Sstevel@tonic-gate struct v3_ext_method; 71*0Sstevel@tonic-gate struct v3_ext_ctx; 72*0Sstevel@tonic-gate 73*0Sstevel@tonic-gate /* Useful typedefs */ 74*0Sstevel@tonic-gate 75*0Sstevel@tonic-gate typedef void * (*X509V3_EXT_NEW)(void); 76*0Sstevel@tonic-gate typedef void (*X509V3_EXT_FREE)(void *); 77*0Sstevel@tonic-gate typedef void * (*X509V3_EXT_D2I)(void *, unsigned char ** , long); 78*0Sstevel@tonic-gate typedef int (*X509V3_EXT_I2D)(void *, unsigned char **); 79*0Sstevel@tonic-gate typedef STACK_OF(CONF_VALUE) * (*X509V3_EXT_I2V)(struct v3_ext_method *method, void *ext, STACK_OF(CONF_VALUE) *extlist); 80*0Sstevel@tonic-gate typedef void * (*X509V3_EXT_V2I)(struct v3_ext_method *method, struct v3_ext_ctx *ctx, STACK_OF(CONF_VALUE) *values); 81*0Sstevel@tonic-gate typedef char * (*X509V3_EXT_I2S)(struct v3_ext_method *method, void *ext); 82*0Sstevel@tonic-gate typedef void * (*X509V3_EXT_S2I)(struct v3_ext_method *method, struct v3_ext_ctx *ctx, char *str); 83*0Sstevel@tonic-gate typedef int (*X509V3_EXT_I2R)(struct v3_ext_method *method, void *ext, BIO *out, int indent); 84*0Sstevel@tonic-gate typedef void * (*X509V3_EXT_R2I)(struct v3_ext_method *method, struct v3_ext_ctx *ctx, char *str); 85*0Sstevel@tonic-gate 86*0Sstevel@tonic-gate /* V3 extension structure */ 87*0Sstevel@tonic-gate 88*0Sstevel@tonic-gate struct v3_ext_method { 89*0Sstevel@tonic-gate int ext_nid; 90*0Sstevel@tonic-gate int ext_flags; 91*0Sstevel@tonic-gate /* If this is set the following four fields are ignored */ 92*0Sstevel@tonic-gate ASN1_ITEM_EXP *it; 93*0Sstevel@tonic-gate /* Old style ASN1 calls */ 94*0Sstevel@tonic-gate X509V3_EXT_NEW ext_new; 95*0Sstevel@tonic-gate X509V3_EXT_FREE ext_free; 96*0Sstevel@tonic-gate X509V3_EXT_D2I d2i; 97*0Sstevel@tonic-gate X509V3_EXT_I2D i2d; 98*0Sstevel@tonic-gate 99*0Sstevel@tonic-gate /* The following pair is used for string extensions */ 100*0Sstevel@tonic-gate X509V3_EXT_I2S i2s; 101*0Sstevel@tonic-gate X509V3_EXT_S2I s2i; 102*0Sstevel@tonic-gate 103*0Sstevel@tonic-gate /* The following pair is used for multi-valued extensions */ 104*0Sstevel@tonic-gate X509V3_EXT_I2V i2v; 105*0Sstevel@tonic-gate X509V3_EXT_V2I v2i; 106*0Sstevel@tonic-gate 107*0Sstevel@tonic-gate /* The following are used for raw extensions */ 108*0Sstevel@tonic-gate X509V3_EXT_I2R i2r; 109*0Sstevel@tonic-gate X509V3_EXT_R2I r2i; 110*0Sstevel@tonic-gate 111*0Sstevel@tonic-gate void *usr_data; /* Any extension specific data */ 112*0Sstevel@tonic-gate }; 113*0Sstevel@tonic-gate 114*0Sstevel@tonic-gate typedef struct X509V3_CONF_METHOD_st { 115*0Sstevel@tonic-gate char * (*get_string)(void *db, char *section, char *value); 116*0Sstevel@tonic-gate STACK_OF(CONF_VALUE) * (*get_section)(void *db, char *section); 117*0Sstevel@tonic-gate void (*free_string)(void *db, char * string); 118*0Sstevel@tonic-gate void (*free_section)(void *db, STACK_OF(CONF_VALUE) *section); 119*0Sstevel@tonic-gate } X509V3_CONF_METHOD; 120*0Sstevel@tonic-gate 121*0Sstevel@tonic-gate /* Context specific info */ 122*0Sstevel@tonic-gate struct v3_ext_ctx { 123*0Sstevel@tonic-gate #define CTX_TEST 0x1 124*0Sstevel@tonic-gate int flags; 125*0Sstevel@tonic-gate X509 *issuer_cert; 126*0Sstevel@tonic-gate X509 *subject_cert; 127*0Sstevel@tonic-gate X509_REQ *subject_req; 128*0Sstevel@tonic-gate X509_CRL *crl; 129*0Sstevel@tonic-gate X509V3_CONF_METHOD *db_meth; 130*0Sstevel@tonic-gate void *db; 131*0Sstevel@tonic-gate /* Maybe more here */ 132*0Sstevel@tonic-gate }; 133*0Sstevel@tonic-gate 134*0Sstevel@tonic-gate typedef struct v3_ext_method X509V3_EXT_METHOD; 135*0Sstevel@tonic-gate typedef struct v3_ext_ctx X509V3_CTX; 136*0Sstevel@tonic-gate 137*0Sstevel@tonic-gate DECLARE_STACK_OF(X509V3_EXT_METHOD) 138*0Sstevel@tonic-gate 139*0Sstevel@tonic-gate /* ext_flags values */ 140*0Sstevel@tonic-gate #define X509V3_EXT_DYNAMIC 0x1 141*0Sstevel@tonic-gate #define X509V3_EXT_CTX_DEP 0x2 142*0Sstevel@tonic-gate #define X509V3_EXT_MULTILINE 0x4 143*0Sstevel@tonic-gate 144*0Sstevel@tonic-gate typedef BIT_STRING_BITNAME ENUMERATED_NAMES; 145*0Sstevel@tonic-gate 146*0Sstevel@tonic-gate typedef struct BASIC_CONSTRAINTS_st { 147*0Sstevel@tonic-gate int ca; 148*0Sstevel@tonic-gate ASN1_INTEGER *pathlen; 149*0Sstevel@tonic-gate } BASIC_CONSTRAINTS; 150*0Sstevel@tonic-gate 151*0Sstevel@tonic-gate 152*0Sstevel@tonic-gate typedef struct PKEY_USAGE_PERIOD_st { 153*0Sstevel@tonic-gate ASN1_GENERALIZEDTIME *notBefore; 154*0Sstevel@tonic-gate ASN1_GENERALIZEDTIME *notAfter; 155*0Sstevel@tonic-gate } PKEY_USAGE_PERIOD; 156*0Sstevel@tonic-gate 157*0Sstevel@tonic-gate typedef struct otherName_st { 158*0Sstevel@tonic-gate ASN1_OBJECT *type_id; 159*0Sstevel@tonic-gate ASN1_TYPE *value; 160*0Sstevel@tonic-gate } OTHERNAME; 161*0Sstevel@tonic-gate 162*0Sstevel@tonic-gate typedef struct EDIPartyName_st { 163*0Sstevel@tonic-gate ASN1_STRING *nameAssigner; 164*0Sstevel@tonic-gate ASN1_STRING *partyName; 165*0Sstevel@tonic-gate } EDIPARTYNAME; 166*0Sstevel@tonic-gate 167*0Sstevel@tonic-gate typedef struct GENERAL_NAME_st { 168*0Sstevel@tonic-gate 169*0Sstevel@tonic-gate #define GEN_OTHERNAME 0 170*0Sstevel@tonic-gate #define GEN_EMAIL 1 171*0Sstevel@tonic-gate #define GEN_DNS 2 172*0Sstevel@tonic-gate #define GEN_X400 3 173*0Sstevel@tonic-gate #define GEN_DIRNAME 4 174*0Sstevel@tonic-gate #define GEN_EDIPARTY 5 175*0Sstevel@tonic-gate #define GEN_URI 6 176*0Sstevel@tonic-gate #define GEN_IPADD 7 177*0Sstevel@tonic-gate #define GEN_RID 8 178*0Sstevel@tonic-gate 179*0Sstevel@tonic-gate int type; 180*0Sstevel@tonic-gate union { 181*0Sstevel@tonic-gate char *ptr; 182*0Sstevel@tonic-gate OTHERNAME *otherName; /* otherName */ 183*0Sstevel@tonic-gate ASN1_IA5STRING *rfc822Name; 184*0Sstevel@tonic-gate ASN1_IA5STRING *dNSName; 185*0Sstevel@tonic-gate ASN1_TYPE *x400Address; 186*0Sstevel@tonic-gate X509_NAME *directoryName; 187*0Sstevel@tonic-gate EDIPARTYNAME *ediPartyName; 188*0Sstevel@tonic-gate ASN1_IA5STRING *uniformResourceIdentifier; 189*0Sstevel@tonic-gate ASN1_OCTET_STRING *iPAddress; 190*0Sstevel@tonic-gate ASN1_OBJECT *registeredID; 191*0Sstevel@tonic-gate 192*0Sstevel@tonic-gate /* Old names */ 193*0Sstevel@tonic-gate ASN1_OCTET_STRING *ip; /* iPAddress */ 194*0Sstevel@tonic-gate X509_NAME *dirn; /* dirn */ 195*0Sstevel@tonic-gate ASN1_IA5STRING *ia5;/* rfc822Name, dNSName, uniformResourceIdentifier */ 196*0Sstevel@tonic-gate ASN1_OBJECT *rid; /* registeredID */ 197*0Sstevel@tonic-gate ASN1_TYPE *other; /* x400Address */ 198*0Sstevel@tonic-gate } d; 199*0Sstevel@tonic-gate } GENERAL_NAME; 200*0Sstevel@tonic-gate 201*0Sstevel@tonic-gate typedef STACK_OF(GENERAL_NAME) GENERAL_NAMES; 202*0Sstevel@tonic-gate 203*0Sstevel@tonic-gate typedef struct ACCESS_DESCRIPTION_st { 204*0Sstevel@tonic-gate ASN1_OBJECT *method; 205*0Sstevel@tonic-gate GENERAL_NAME *location; 206*0Sstevel@tonic-gate } ACCESS_DESCRIPTION; 207*0Sstevel@tonic-gate 208*0Sstevel@tonic-gate typedef STACK_OF(ACCESS_DESCRIPTION) AUTHORITY_INFO_ACCESS; 209*0Sstevel@tonic-gate 210*0Sstevel@tonic-gate typedef STACK_OF(ASN1_OBJECT) EXTENDED_KEY_USAGE; 211*0Sstevel@tonic-gate 212*0Sstevel@tonic-gate DECLARE_STACK_OF(GENERAL_NAME) 213*0Sstevel@tonic-gate DECLARE_ASN1_SET_OF(GENERAL_NAME) 214*0Sstevel@tonic-gate 215*0Sstevel@tonic-gate DECLARE_STACK_OF(ACCESS_DESCRIPTION) 216*0Sstevel@tonic-gate DECLARE_ASN1_SET_OF(ACCESS_DESCRIPTION) 217*0Sstevel@tonic-gate 218*0Sstevel@tonic-gate typedef struct DIST_POINT_NAME_st { 219*0Sstevel@tonic-gate int type; 220*0Sstevel@tonic-gate union { 221*0Sstevel@tonic-gate GENERAL_NAMES *fullname; 222*0Sstevel@tonic-gate STACK_OF(X509_NAME_ENTRY) *relativename; 223*0Sstevel@tonic-gate } name; 224*0Sstevel@tonic-gate } DIST_POINT_NAME; 225*0Sstevel@tonic-gate 226*0Sstevel@tonic-gate typedef struct DIST_POINT_st { 227*0Sstevel@tonic-gate DIST_POINT_NAME *distpoint; 228*0Sstevel@tonic-gate ASN1_BIT_STRING *reasons; 229*0Sstevel@tonic-gate GENERAL_NAMES *CRLissuer; 230*0Sstevel@tonic-gate } DIST_POINT; 231*0Sstevel@tonic-gate 232*0Sstevel@tonic-gate typedef STACK_OF(DIST_POINT) CRL_DIST_POINTS; 233*0Sstevel@tonic-gate 234*0Sstevel@tonic-gate DECLARE_STACK_OF(DIST_POINT) 235*0Sstevel@tonic-gate DECLARE_ASN1_SET_OF(DIST_POINT) 236*0Sstevel@tonic-gate 237*0Sstevel@tonic-gate typedef struct AUTHORITY_KEYID_st { 238*0Sstevel@tonic-gate ASN1_OCTET_STRING *keyid; 239*0Sstevel@tonic-gate GENERAL_NAMES *issuer; 240*0Sstevel@tonic-gate ASN1_INTEGER *serial; 241*0Sstevel@tonic-gate } AUTHORITY_KEYID; 242*0Sstevel@tonic-gate 243*0Sstevel@tonic-gate /* Strong extranet structures */ 244*0Sstevel@tonic-gate 245*0Sstevel@tonic-gate typedef struct SXNET_ID_st { 246*0Sstevel@tonic-gate ASN1_INTEGER *zone; 247*0Sstevel@tonic-gate ASN1_OCTET_STRING *user; 248*0Sstevel@tonic-gate } SXNETID; 249*0Sstevel@tonic-gate 250*0Sstevel@tonic-gate DECLARE_STACK_OF(SXNETID) 251*0Sstevel@tonic-gate DECLARE_ASN1_SET_OF(SXNETID) 252*0Sstevel@tonic-gate 253*0Sstevel@tonic-gate typedef struct SXNET_st { 254*0Sstevel@tonic-gate ASN1_INTEGER *version; 255*0Sstevel@tonic-gate STACK_OF(SXNETID) *ids; 256*0Sstevel@tonic-gate } SXNET; 257*0Sstevel@tonic-gate 258*0Sstevel@tonic-gate typedef struct NOTICEREF_st { 259*0Sstevel@tonic-gate ASN1_STRING *organization; 260*0Sstevel@tonic-gate STACK_OF(ASN1_INTEGER) *noticenos; 261*0Sstevel@tonic-gate } NOTICEREF; 262*0Sstevel@tonic-gate 263*0Sstevel@tonic-gate typedef struct USERNOTICE_st { 264*0Sstevel@tonic-gate NOTICEREF *noticeref; 265*0Sstevel@tonic-gate ASN1_STRING *exptext; 266*0Sstevel@tonic-gate } USERNOTICE; 267*0Sstevel@tonic-gate 268*0Sstevel@tonic-gate typedef struct POLICYQUALINFO_st { 269*0Sstevel@tonic-gate ASN1_OBJECT *pqualid; 270*0Sstevel@tonic-gate union { 271*0Sstevel@tonic-gate ASN1_IA5STRING *cpsuri; 272*0Sstevel@tonic-gate USERNOTICE *usernotice; 273*0Sstevel@tonic-gate ASN1_TYPE *other; 274*0Sstevel@tonic-gate } d; 275*0Sstevel@tonic-gate } POLICYQUALINFO; 276*0Sstevel@tonic-gate 277*0Sstevel@tonic-gate DECLARE_STACK_OF(POLICYQUALINFO) 278*0Sstevel@tonic-gate DECLARE_ASN1_SET_OF(POLICYQUALINFO) 279*0Sstevel@tonic-gate 280*0Sstevel@tonic-gate typedef struct POLICYINFO_st { 281*0Sstevel@tonic-gate ASN1_OBJECT *policyid; 282*0Sstevel@tonic-gate STACK_OF(POLICYQUALINFO) *qualifiers; 283*0Sstevel@tonic-gate } POLICYINFO; 284*0Sstevel@tonic-gate 285*0Sstevel@tonic-gate typedef STACK_OF(POLICYINFO) CERTIFICATEPOLICIES; 286*0Sstevel@tonic-gate 287*0Sstevel@tonic-gate DECLARE_STACK_OF(POLICYINFO) 288*0Sstevel@tonic-gate DECLARE_ASN1_SET_OF(POLICYINFO) 289*0Sstevel@tonic-gate 290*0Sstevel@tonic-gate #define X509V3_conf_err(val) ERR_add_error_data(6, "section:", val->section, \ 291*0Sstevel@tonic-gate ",name:", val->name, ",value:", val->value); 292*0Sstevel@tonic-gate 293*0Sstevel@tonic-gate #define X509V3_set_ctx_test(ctx) \ 294*0Sstevel@tonic-gate X509V3_set_ctx(ctx, NULL, NULL, NULL, NULL, CTX_TEST) 295*0Sstevel@tonic-gate #define X509V3_set_ctx_nodb(ctx) (ctx)->db = NULL; 296*0Sstevel@tonic-gate 297*0Sstevel@tonic-gate #define EXT_BITSTRING(nid, table) { nid, 0, ASN1_ITEM_ref(ASN1_BIT_STRING), \ 298*0Sstevel@tonic-gate 0,0,0,0, \ 299*0Sstevel@tonic-gate 0,0, \ 300*0Sstevel@tonic-gate (X509V3_EXT_I2V)i2v_ASN1_BIT_STRING, \ 301*0Sstevel@tonic-gate (X509V3_EXT_V2I)v2i_ASN1_BIT_STRING, \ 302*0Sstevel@tonic-gate NULL, NULL, \ 303*0Sstevel@tonic-gate table} 304*0Sstevel@tonic-gate 305*0Sstevel@tonic-gate #define EXT_IA5STRING(nid) { nid, 0, ASN1_ITEM_ref(ASN1_IA5STRING), \ 306*0Sstevel@tonic-gate 0,0,0,0, \ 307*0Sstevel@tonic-gate (X509V3_EXT_I2S)i2s_ASN1_IA5STRING, \ 308*0Sstevel@tonic-gate (X509V3_EXT_S2I)s2i_ASN1_IA5STRING, \ 309*0Sstevel@tonic-gate 0,0,0,0, \ 310*0Sstevel@tonic-gate NULL} 311*0Sstevel@tonic-gate 312*0Sstevel@tonic-gate #define EXT_END { -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} 313*0Sstevel@tonic-gate 314*0Sstevel@tonic-gate 315*0Sstevel@tonic-gate /* X509_PURPOSE stuff */ 316*0Sstevel@tonic-gate 317*0Sstevel@tonic-gate #define EXFLAG_BCONS 0x1 318*0Sstevel@tonic-gate #define EXFLAG_KUSAGE 0x2 319*0Sstevel@tonic-gate #define EXFLAG_XKUSAGE 0x4 320*0Sstevel@tonic-gate #define EXFLAG_NSCERT 0x8 321*0Sstevel@tonic-gate 322*0Sstevel@tonic-gate #define EXFLAG_CA 0x10 323*0Sstevel@tonic-gate #define EXFLAG_SS 0x20 324*0Sstevel@tonic-gate #define EXFLAG_V1 0x40 325*0Sstevel@tonic-gate #define EXFLAG_INVALID 0x80 326*0Sstevel@tonic-gate #define EXFLAG_SET 0x100 327*0Sstevel@tonic-gate #define EXFLAG_CRITICAL 0x200 328*0Sstevel@tonic-gate 329*0Sstevel@tonic-gate #define KU_DIGITAL_SIGNATURE 0x0080 330*0Sstevel@tonic-gate #define KU_NON_REPUDIATION 0x0040 331*0Sstevel@tonic-gate #define KU_KEY_ENCIPHERMENT 0x0020 332*0Sstevel@tonic-gate #define KU_DATA_ENCIPHERMENT 0x0010 333*0Sstevel@tonic-gate #define KU_KEY_AGREEMENT 0x0008 334*0Sstevel@tonic-gate #define KU_KEY_CERT_SIGN 0x0004 335*0Sstevel@tonic-gate #define KU_CRL_SIGN 0x0002 336*0Sstevel@tonic-gate #define KU_ENCIPHER_ONLY 0x0001 337*0Sstevel@tonic-gate #define KU_DECIPHER_ONLY 0x8000 338*0Sstevel@tonic-gate 339*0Sstevel@tonic-gate #define NS_SSL_CLIENT 0x80 340*0Sstevel@tonic-gate #define NS_SSL_SERVER 0x40 341*0Sstevel@tonic-gate #define NS_SMIME 0x20 342*0Sstevel@tonic-gate #define NS_OBJSIGN 0x10 343*0Sstevel@tonic-gate #define NS_SSL_CA 0x04 344*0Sstevel@tonic-gate #define NS_SMIME_CA 0x02 345*0Sstevel@tonic-gate #define NS_OBJSIGN_CA 0x01 346*0Sstevel@tonic-gate #define NS_ANY_CA (NS_SSL_CA|NS_SMIME_CA|NS_OBJSIGN_CA) 347*0Sstevel@tonic-gate 348*0Sstevel@tonic-gate #define XKU_SSL_SERVER 0x1 349*0Sstevel@tonic-gate #define XKU_SSL_CLIENT 0x2 350*0Sstevel@tonic-gate #define XKU_SMIME 0x4 351*0Sstevel@tonic-gate #define XKU_CODE_SIGN 0x8 352*0Sstevel@tonic-gate #define XKU_SGC 0x10 353*0Sstevel@tonic-gate #define XKU_OCSP_SIGN 0x20 354*0Sstevel@tonic-gate #define XKU_TIMESTAMP 0x40 355*0Sstevel@tonic-gate #define XKU_DVCS 0x80 356*0Sstevel@tonic-gate 357*0Sstevel@tonic-gate #define X509_PURPOSE_DYNAMIC 0x1 358*0Sstevel@tonic-gate #define X509_PURPOSE_DYNAMIC_NAME 0x2 359*0Sstevel@tonic-gate 360*0Sstevel@tonic-gate typedef struct x509_purpose_st { 361*0Sstevel@tonic-gate int purpose; 362*0Sstevel@tonic-gate int trust; /* Default trust ID */ 363*0Sstevel@tonic-gate int flags; 364*0Sstevel@tonic-gate int (*check_purpose)(const struct x509_purpose_st *, 365*0Sstevel@tonic-gate const X509 *, int); 366*0Sstevel@tonic-gate char *name; 367*0Sstevel@tonic-gate char *sname; 368*0Sstevel@tonic-gate void *usr_data; 369*0Sstevel@tonic-gate } X509_PURPOSE; 370*0Sstevel@tonic-gate 371*0Sstevel@tonic-gate #define X509_PURPOSE_SSL_CLIENT 1 372*0Sstevel@tonic-gate #define X509_PURPOSE_SSL_SERVER 2 373*0Sstevel@tonic-gate #define X509_PURPOSE_NS_SSL_SERVER 3 374*0Sstevel@tonic-gate #define X509_PURPOSE_SMIME_SIGN 4 375*0Sstevel@tonic-gate #define X509_PURPOSE_SMIME_ENCRYPT 5 376*0Sstevel@tonic-gate #define X509_PURPOSE_CRL_SIGN 6 377*0Sstevel@tonic-gate #define X509_PURPOSE_ANY 7 378*0Sstevel@tonic-gate #define X509_PURPOSE_OCSP_HELPER 8 379*0Sstevel@tonic-gate 380*0Sstevel@tonic-gate #define X509_PURPOSE_MIN 1 381*0Sstevel@tonic-gate #define X509_PURPOSE_MAX 8 382*0Sstevel@tonic-gate 383*0Sstevel@tonic-gate /* Flags for X509V3_EXT_print() */ 384*0Sstevel@tonic-gate 385*0Sstevel@tonic-gate #define X509V3_EXT_UNKNOWN_MASK (0xfL << 16) 386*0Sstevel@tonic-gate /* Return error for unknown extensions */ 387*0Sstevel@tonic-gate #define X509V3_EXT_DEFAULT 0 388*0Sstevel@tonic-gate /* Print error for unknown extensions */ 389*0Sstevel@tonic-gate #define X509V3_EXT_ERROR_UNKNOWN (1L << 16) 390*0Sstevel@tonic-gate /* ASN1 parse unknown extensions */ 391*0Sstevel@tonic-gate #define X509V3_EXT_PARSE_UNKNOWN (2L << 16) 392*0Sstevel@tonic-gate /* BIO_dump unknown extensions */ 393*0Sstevel@tonic-gate #define X509V3_EXT_DUMP_UNKNOWN (3L << 16) 394*0Sstevel@tonic-gate 395*0Sstevel@tonic-gate /* Flags for X509V3_add1_i2d */ 396*0Sstevel@tonic-gate 397*0Sstevel@tonic-gate #define X509V3_ADD_OP_MASK 0xfL 398*0Sstevel@tonic-gate #define X509V3_ADD_DEFAULT 0L 399*0Sstevel@tonic-gate #define X509V3_ADD_APPEND 1L 400*0Sstevel@tonic-gate #define X509V3_ADD_REPLACE 2L 401*0Sstevel@tonic-gate #define X509V3_ADD_REPLACE_EXISTING 3L 402*0Sstevel@tonic-gate #define X509V3_ADD_KEEP_EXISTING 4L 403*0Sstevel@tonic-gate #define X509V3_ADD_DELETE 5L 404*0Sstevel@tonic-gate #define X509V3_ADD_SILENT 0x10 405*0Sstevel@tonic-gate 406*0Sstevel@tonic-gate DECLARE_STACK_OF(X509_PURPOSE) 407*0Sstevel@tonic-gate 408*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(BASIC_CONSTRAINTS) 409*0Sstevel@tonic-gate 410*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(SXNET) 411*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(SXNETID) 412*0Sstevel@tonic-gate 413*0Sstevel@tonic-gate int SXNET_add_id_asc(SXNET **psx, char *zone, char *user, int userlen); 414*0Sstevel@tonic-gate int SXNET_add_id_ulong(SXNET **psx, unsigned long lzone, char *user, int userlen); 415*0Sstevel@tonic-gate int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *izone, char *user, int userlen); 416*0Sstevel@tonic-gate 417*0Sstevel@tonic-gate ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone); 418*0Sstevel@tonic-gate ASN1_OCTET_STRING *SXNET_get_id_ulong(SXNET *sx, unsigned long lzone); 419*0Sstevel@tonic-gate ASN1_OCTET_STRING *SXNET_get_id_INTEGER(SXNET *sx, ASN1_INTEGER *zone); 420*0Sstevel@tonic-gate 421*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(AUTHORITY_KEYID) 422*0Sstevel@tonic-gate 423*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(PKEY_USAGE_PERIOD) 424*0Sstevel@tonic-gate 425*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(GENERAL_NAME) 426*0Sstevel@tonic-gate 427*0Sstevel@tonic-gate STACK_OF(CONF_VALUE) *i2v_GENERAL_NAME(X509V3_EXT_METHOD *method, GENERAL_NAME *gen, STACK_OF(CONF_VALUE) *ret); 428*0Sstevel@tonic-gate int GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen); 429*0Sstevel@tonic-gate 430*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(GENERAL_NAMES) 431*0Sstevel@tonic-gate 432*0Sstevel@tonic-gate STACK_OF(CONF_VALUE) *i2v_GENERAL_NAMES(X509V3_EXT_METHOD *method, 433*0Sstevel@tonic-gate GENERAL_NAMES *gen, STACK_OF(CONF_VALUE) *extlist); 434*0Sstevel@tonic-gate GENERAL_NAMES *v2i_GENERAL_NAMES(X509V3_EXT_METHOD *method, 435*0Sstevel@tonic-gate X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval); 436*0Sstevel@tonic-gate 437*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(OTHERNAME) 438*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(EDIPARTYNAME) 439*0Sstevel@tonic-gate 440*0Sstevel@tonic-gate char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, ASN1_OCTET_STRING *ia5); 441*0Sstevel@tonic-gate ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str); 442*0Sstevel@tonic-gate 443*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(EXTENDED_KEY_USAGE) 444*0Sstevel@tonic-gate int i2a_ACCESS_DESCRIPTION(BIO *bp, ACCESS_DESCRIPTION* a); 445*0Sstevel@tonic-gate 446*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(CERTIFICATEPOLICIES) 447*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(POLICYINFO) 448*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(POLICYQUALINFO) 449*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(USERNOTICE) 450*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(NOTICEREF) 451*0Sstevel@tonic-gate 452*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(CRL_DIST_POINTS) 453*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(DIST_POINT) 454*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(DIST_POINT_NAME) 455*0Sstevel@tonic-gate 456*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(ACCESS_DESCRIPTION) 457*0Sstevel@tonic-gate DECLARE_ASN1_FUNCTIONS(AUTHORITY_INFO_ACCESS) 458*0Sstevel@tonic-gate 459*0Sstevel@tonic-gate #ifdef HEADER_CONF_H 460*0Sstevel@tonic-gate GENERAL_NAME *v2i_GENERAL_NAME(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, CONF_VALUE *cnf); 461*0Sstevel@tonic-gate void X509V3_conf_free(CONF_VALUE *val); 462*0Sstevel@tonic-gate 463*0Sstevel@tonic-gate X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, char *value); 464*0Sstevel@tonic-gate X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name, char *value); 465*0Sstevel@tonic-gate int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, STACK_OF(X509_EXTENSION) **sk); 466*0Sstevel@tonic-gate int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509 *cert); 467*0Sstevel@tonic-gate int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req); 468*0Sstevel@tonic-gate int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl); 469*0Sstevel@tonic-gate 470*0Sstevel@tonic-gate X509_EXTENSION *X509V3_EXT_conf_nid(LHASH *conf, X509V3_CTX *ctx, int ext_nid, char *value); 471*0Sstevel@tonic-gate X509_EXTENSION *X509V3_EXT_conf(LHASH *conf, X509V3_CTX *ctx, char *name, char *value); 472*0Sstevel@tonic-gate int X509V3_EXT_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, X509 *cert); 473*0Sstevel@tonic-gate int X509V3_EXT_REQ_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, X509_REQ *req); 474*0Sstevel@tonic-gate int X509V3_EXT_CRL_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl); 475*0Sstevel@tonic-gate 476*0Sstevel@tonic-gate int X509V3_add_value_bool_nf(char *name, int asn1_bool, 477*0Sstevel@tonic-gate STACK_OF(CONF_VALUE) **extlist); 478*0Sstevel@tonic-gate int X509V3_get_value_bool(CONF_VALUE *value, int *asn1_bool); 479*0Sstevel@tonic-gate int X509V3_get_value_int(CONF_VALUE *value, ASN1_INTEGER **aint); 480*0Sstevel@tonic-gate void X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf); 481*0Sstevel@tonic-gate void X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH *lhash); 482*0Sstevel@tonic-gate #endif 483*0Sstevel@tonic-gate 484*0Sstevel@tonic-gate char * X509V3_get_string(X509V3_CTX *ctx, char *name, char *section); 485*0Sstevel@tonic-gate STACK_OF(CONF_VALUE) * X509V3_get_section(X509V3_CTX *ctx, char *section); 486*0Sstevel@tonic-gate void X509V3_string_free(X509V3_CTX *ctx, char *str); 487*0Sstevel@tonic-gate void X509V3_section_free( X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section); 488*0Sstevel@tonic-gate void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subject, 489*0Sstevel@tonic-gate X509_REQ *req, X509_CRL *crl, int flags); 490*0Sstevel@tonic-gate 491*0Sstevel@tonic-gate int X509V3_add_value(const char *name, const char *value, 492*0Sstevel@tonic-gate STACK_OF(CONF_VALUE) **extlist); 493*0Sstevel@tonic-gate int X509V3_add_value_uchar(const char *name, const unsigned char *value, 494*0Sstevel@tonic-gate STACK_OF(CONF_VALUE) **extlist); 495*0Sstevel@tonic-gate int X509V3_add_value_bool(const char *name, int asn1_bool, 496*0Sstevel@tonic-gate STACK_OF(CONF_VALUE) **extlist); 497*0Sstevel@tonic-gate int X509V3_add_value_int(const char *name, ASN1_INTEGER *aint, 498*0Sstevel@tonic-gate STACK_OF(CONF_VALUE) **extlist); 499*0Sstevel@tonic-gate char * i2s_ASN1_INTEGER(X509V3_EXT_METHOD *meth, ASN1_INTEGER *aint); 500*0Sstevel@tonic-gate ASN1_INTEGER * s2i_ASN1_INTEGER(X509V3_EXT_METHOD *meth, char *value); 501*0Sstevel@tonic-gate char * i2s_ASN1_ENUMERATED(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint); 502*0Sstevel@tonic-gate char * i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint); 503*0Sstevel@tonic-gate int X509V3_EXT_add(X509V3_EXT_METHOD *ext); 504*0Sstevel@tonic-gate int X509V3_EXT_add_list(X509V3_EXT_METHOD *extlist); 505*0Sstevel@tonic-gate int X509V3_EXT_add_alias(int nid_to, int nid_from); 506*0Sstevel@tonic-gate void X509V3_EXT_cleanup(void); 507*0Sstevel@tonic-gate 508*0Sstevel@tonic-gate X509V3_EXT_METHOD *X509V3_EXT_get(X509_EXTENSION *ext); 509*0Sstevel@tonic-gate X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid); 510*0Sstevel@tonic-gate int X509V3_add_standard_extensions(void); 511*0Sstevel@tonic-gate STACK_OF(CONF_VALUE) *X509V3_parse_list(const char *line); 512*0Sstevel@tonic-gate void *X509V3_EXT_d2i(X509_EXTENSION *ext); 513*0Sstevel@tonic-gate void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx); 514*0Sstevel@tonic-gate 515*0Sstevel@tonic-gate 516*0Sstevel@tonic-gate X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc); 517*0Sstevel@tonic-gate int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value, int crit, unsigned long flags); 518*0Sstevel@tonic-gate 519*0Sstevel@tonic-gate char *hex_to_string(unsigned char *buffer, long len); 520*0Sstevel@tonic-gate unsigned char *string_to_hex(char *str, long *len); 521*0Sstevel@tonic-gate int name_cmp(const char *name, const char *cmp); 522*0Sstevel@tonic-gate 523*0Sstevel@tonic-gate void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, 524*0Sstevel@tonic-gate int ml); 525*0Sstevel@tonic-gate int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent); 526*0Sstevel@tonic-gate int X509V3_EXT_print_fp(FILE *out, X509_EXTENSION *ext, int flag, int indent); 527*0Sstevel@tonic-gate 528*0Sstevel@tonic-gate int X509V3_extensions_print(BIO *out, char *title, STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent); 529*0Sstevel@tonic-gate 530*0Sstevel@tonic-gate int X509_check_purpose(X509 *x, int id, int ca); 531*0Sstevel@tonic-gate int X509_supported_extension(X509_EXTENSION *ex); 532*0Sstevel@tonic-gate int X509_PURPOSE_set(int *p, int purpose); 533*0Sstevel@tonic-gate int X509_check_issued(X509 *issuer, X509 *subject); 534*0Sstevel@tonic-gate int X509_PURPOSE_get_count(void); 535*0Sstevel@tonic-gate X509_PURPOSE * X509_PURPOSE_get0(int idx); 536*0Sstevel@tonic-gate int X509_PURPOSE_get_by_sname(char *sname); 537*0Sstevel@tonic-gate int X509_PURPOSE_get_by_id(int id); 538*0Sstevel@tonic-gate int X509_PURPOSE_add(int id, int trust, int flags, 539*0Sstevel@tonic-gate int (*ck)(const X509_PURPOSE *, const X509 *, int), 540*0Sstevel@tonic-gate char *name, char *sname, void *arg); 541*0Sstevel@tonic-gate char *X509_PURPOSE_get0_name(X509_PURPOSE *xp); 542*0Sstevel@tonic-gate char *X509_PURPOSE_get0_sname(X509_PURPOSE *xp); 543*0Sstevel@tonic-gate int X509_PURPOSE_get_trust(X509_PURPOSE *xp); 544*0Sstevel@tonic-gate void X509_PURPOSE_cleanup(void); 545*0Sstevel@tonic-gate int X509_PURPOSE_get_id(X509_PURPOSE *); 546*0Sstevel@tonic-gate 547*0Sstevel@tonic-gate STACK *X509_get1_email(X509 *x); 548*0Sstevel@tonic-gate STACK *X509_REQ_get1_email(X509_REQ *x); 549*0Sstevel@tonic-gate void X509_email_free(STACK *sk); 550*0Sstevel@tonic-gate 551*0Sstevel@tonic-gate 552*0Sstevel@tonic-gate /* BEGIN ERROR CODES */ 553*0Sstevel@tonic-gate /* The following lines are auto generated by the script mkerr.pl. Any changes 554*0Sstevel@tonic-gate * made after this point may be overwritten when the script is next run. 555*0Sstevel@tonic-gate */ 556*0Sstevel@tonic-gate void ERR_load_X509V3_strings(void); 557*0Sstevel@tonic-gate 558*0Sstevel@tonic-gate /* Error codes for the X509V3 functions. */ 559*0Sstevel@tonic-gate 560*0Sstevel@tonic-gate /* Function codes. */ 561*0Sstevel@tonic-gate #define X509V3_F_COPY_EMAIL 122 562*0Sstevel@tonic-gate #define X509V3_F_COPY_ISSUER 123 563*0Sstevel@tonic-gate #define X509V3_F_DO_EXT_CONF 124 564*0Sstevel@tonic-gate #define X509V3_F_DO_EXT_I2D 135 565*0Sstevel@tonic-gate #define X509V3_F_HEX_TO_STRING 111 566*0Sstevel@tonic-gate #define X509V3_F_I2S_ASN1_ENUMERATED 121 567*0Sstevel@tonic-gate #define X509V3_F_I2S_ASN1_INTEGER 120 568*0Sstevel@tonic-gate #define X509V3_F_I2V_AUTHORITY_INFO_ACCESS 138 569*0Sstevel@tonic-gate #define X509V3_F_NOTICE_SECTION 132 570*0Sstevel@tonic-gate #define X509V3_F_NREF_NOS 133 571*0Sstevel@tonic-gate #define X509V3_F_POLICY_SECTION 131 572*0Sstevel@tonic-gate #define X509V3_F_R2I_CERTPOL 130 573*0Sstevel@tonic-gate #define X509V3_F_S2I_ASN1_IA5STRING 100 574*0Sstevel@tonic-gate #define X509V3_F_S2I_ASN1_INTEGER 108 575*0Sstevel@tonic-gate #define X509V3_F_S2I_ASN1_OCTET_STRING 112 576*0Sstevel@tonic-gate #define X509V3_F_S2I_ASN1_SKEY_ID 114 577*0Sstevel@tonic-gate #define X509V3_F_S2I_S2I_SKEY_ID 115 578*0Sstevel@tonic-gate #define X509V3_F_STRING_TO_HEX 113 579*0Sstevel@tonic-gate #define X509V3_F_SXNET_ADD_ASC 125 580*0Sstevel@tonic-gate #define X509V3_F_SXNET_ADD_ID_INTEGER 126 581*0Sstevel@tonic-gate #define X509V3_F_SXNET_ADD_ID_ULONG 127 582*0Sstevel@tonic-gate #define X509V3_F_SXNET_GET_ID_ASC 128 583*0Sstevel@tonic-gate #define X509V3_F_SXNET_GET_ID_ULONG 129 584*0Sstevel@tonic-gate #define X509V3_F_V2I_ACCESS_DESCRIPTION 139 585*0Sstevel@tonic-gate #define X509V3_F_V2I_ASN1_BIT_STRING 101 586*0Sstevel@tonic-gate #define X509V3_F_V2I_AUTHORITY_KEYID 119 587*0Sstevel@tonic-gate #define X509V3_F_V2I_BASIC_CONSTRAINTS 102 588*0Sstevel@tonic-gate #define X509V3_F_V2I_CRLD 134 589*0Sstevel@tonic-gate #define X509V3_F_V2I_EXT_KU 103 590*0Sstevel@tonic-gate #define X509V3_F_V2I_GENERAL_NAME 117 591*0Sstevel@tonic-gate #define X509V3_F_V2I_GENERAL_NAMES 118 592*0Sstevel@tonic-gate #define X509V3_F_V3_GENERIC_EXTENSION 116 593*0Sstevel@tonic-gate #define X509V3_F_X509V3_ADD_I2D 140 594*0Sstevel@tonic-gate #define X509V3_F_X509V3_ADD_VALUE 105 595*0Sstevel@tonic-gate #define X509V3_F_X509V3_EXT_ADD 104 596*0Sstevel@tonic-gate #define X509V3_F_X509V3_EXT_ADD_ALIAS 106 597*0Sstevel@tonic-gate #define X509V3_F_X509V3_EXT_CONF 107 598*0Sstevel@tonic-gate #define X509V3_F_X509V3_EXT_I2D 136 599*0Sstevel@tonic-gate #define X509V3_F_X509V3_GET_VALUE_BOOL 110 600*0Sstevel@tonic-gate #define X509V3_F_X509V3_PARSE_LIST 109 601*0Sstevel@tonic-gate #define X509V3_F_X509_PURPOSE_ADD 137 602*0Sstevel@tonic-gate #define X509V3_F_X509_PURPOSE_SET 141 603*0Sstevel@tonic-gate 604*0Sstevel@tonic-gate /* Reason codes. */ 605*0Sstevel@tonic-gate #define X509V3_R_BAD_IP_ADDRESS 118 606*0Sstevel@tonic-gate #define X509V3_R_BAD_OBJECT 119 607*0Sstevel@tonic-gate #define X509V3_R_BN_DEC2BN_ERROR 100 608*0Sstevel@tonic-gate #define X509V3_R_BN_TO_ASN1_INTEGER_ERROR 101 609*0Sstevel@tonic-gate #define X509V3_R_DUPLICATE_ZONE_ID 133 610*0Sstevel@tonic-gate #define X509V3_R_ERROR_CONVERTING_ZONE 131 611*0Sstevel@tonic-gate #define X509V3_R_ERROR_CREATING_EXTENSION 144 612*0Sstevel@tonic-gate #define X509V3_R_ERROR_IN_EXTENSION 128 613*0Sstevel@tonic-gate #define X509V3_R_EXPECTED_A_SECTION_NAME 137 614*0Sstevel@tonic-gate #define X509V3_R_EXTENSION_EXISTS 145 615*0Sstevel@tonic-gate #define X509V3_R_EXTENSION_NAME_ERROR 115 616*0Sstevel@tonic-gate #define X509V3_R_EXTENSION_NOT_FOUND 102 617*0Sstevel@tonic-gate #define X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED 103 618*0Sstevel@tonic-gate #define X509V3_R_EXTENSION_VALUE_ERROR 116 619*0Sstevel@tonic-gate #define X509V3_R_ILLEGAL_HEX_DIGIT 113 620*0Sstevel@tonic-gate #define X509V3_R_INVALID_BOOLEAN_STRING 104 621*0Sstevel@tonic-gate #define X509V3_R_INVALID_EXTENSION_STRING 105 622*0Sstevel@tonic-gate #define X509V3_R_INVALID_NAME 106 623*0Sstevel@tonic-gate #define X509V3_R_INVALID_NULL_ARGUMENT 107 624*0Sstevel@tonic-gate #define X509V3_R_INVALID_NULL_NAME 108 625*0Sstevel@tonic-gate #define X509V3_R_INVALID_NULL_VALUE 109 626*0Sstevel@tonic-gate #define X509V3_R_INVALID_NUMBER 140 627*0Sstevel@tonic-gate #define X509V3_R_INVALID_NUMBERS 141 628*0Sstevel@tonic-gate #define X509V3_R_INVALID_OBJECT_IDENTIFIER 110 629*0Sstevel@tonic-gate #define X509V3_R_INVALID_OPTION 138 630*0Sstevel@tonic-gate #define X509V3_R_INVALID_POLICY_IDENTIFIER 134 631*0Sstevel@tonic-gate #define X509V3_R_INVALID_PURPOSE 146 632*0Sstevel@tonic-gate #define X509V3_R_INVALID_SECTION 135 633*0Sstevel@tonic-gate #define X509V3_R_INVALID_SYNTAX 143 634*0Sstevel@tonic-gate #define X509V3_R_ISSUER_DECODE_ERROR 126 635*0Sstevel@tonic-gate #define X509V3_R_MISSING_VALUE 124 636*0Sstevel@tonic-gate #define X509V3_R_NEED_ORGANIZATION_AND_NUMBERS 142 637*0Sstevel@tonic-gate #define X509V3_R_NO_CONFIG_DATABASE 136 638*0Sstevel@tonic-gate #define X509V3_R_NO_ISSUER_CERTIFICATE 121 639*0Sstevel@tonic-gate #define X509V3_R_NO_ISSUER_DETAILS 127 640*0Sstevel@tonic-gate #define X509V3_R_NO_POLICY_IDENTIFIER 139 641*0Sstevel@tonic-gate #define X509V3_R_NO_PUBLIC_KEY 114 642*0Sstevel@tonic-gate #define X509V3_R_NO_SUBJECT_DETAILS 125 643*0Sstevel@tonic-gate #define X509V3_R_ODD_NUMBER_OF_DIGITS 112 644*0Sstevel@tonic-gate #define X509V3_R_UNABLE_TO_GET_ISSUER_DETAILS 122 645*0Sstevel@tonic-gate #define X509V3_R_UNABLE_TO_GET_ISSUER_KEYID 123 646*0Sstevel@tonic-gate #define X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT 111 647*0Sstevel@tonic-gate #define X509V3_R_UNKNOWN_EXTENSION 129 648*0Sstevel@tonic-gate #define X509V3_R_UNKNOWN_EXTENSION_NAME 130 649*0Sstevel@tonic-gate #define X509V3_R_UNKNOWN_OPTION 120 650*0Sstevel@tonic-gate #define X509V3_R_UNSUPPORTED_OPTION 117 651*0Sstevel@tonic-gate #define X509V3_R_USER_TOO_LONG 132 652*0Sstevel@tonic-gate 653*0Sstevel@tonic-gate #ifdef __cplusplus 654*0Sstevel@tonic-gate } 655*0Sstevel@tonic-gate #endif 656*0Sstevel@tonic-gate #endif 657