1*e71b7053SJung-uk Kim=pod 2*e71b7053SJung-uk Kim 3*e71b7053SJung-uk Kim=head1 NAME 4*e71b7053SJung-uk Kim 5*e71b7053SJung-uk KimX509_get0_extensions, X509_CRL_get0_extensions, X509_REVOKED_get0_extensions, 6*e71b7053SJung-uk KimX509V3_get_d2i, X509V3_add1_i2d, X509V3_EXT_d2i, X509V3_EXT_i2d, 7*e71b7053SJung-uk KimX509_get_ext_d2i, X509_add1_ext_i2d, X509_CRL_get_ext_d2i, 8*e71b7053SJung-uk KimX509_CRL_add1_ext_i2d, X509_REVOKED_get_ext_d2i, 9*e71b7053SJung-uk KimX509_REVOKED_add1_ext_i2d - X509 extension decode and encode functions 10*e71b7053SJung-uk Kim 11*e71b7053SJung-uk Kim=head1 SYNOPSIS 12*e71b7053SJung-uk Kim 13*e71b7053SJung-uk Kim #include <openssl/x509v3.h> 14*e71b7053SJung-uk Kim 15*e71b7053SJung-uk Kim void *X509V3_get_d2i(const STACK_OF(X509_EXTENSION) *x, int nid, int *crit, 16*e71b7053SJung-uk Kim int *idx); 17*e71b7053SJung-uk Kim int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value, 18*e71b7053SJung-uk Kim int crit, unsigned long flags); 19*e71b7053SJung-uk Kim 20*e71b7053SJung-uk Kim void *X509V3_EXT_d2i(X509_EXTENSION *ext); 21*e71b7053SJung-uk Kim X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext); 22*e71b7053SJung-uk Kim 23*e71b7053SJung-uk Kim void *X509_get_ext_d2i(const X509 *x, int nid, int *crit, int *idx); 24*e71b7053SJung-uk Kim int X509_add1_ext_i2d(X509 *x, int nid, void *value, int crit, 25*e71b7053SJung-uk Kim unsigned long flags); 26*e71b7053SJung-uk Kim 27*e71b7053SJung-uk Kim void *X509_CRL_get_ext_d2i(const X509_CRL *crl, int nid, int *crit, int *idx); 28*e71b7053SJung-uk Kim int X509_CRL_add1_ext_i2d(X509_CRL *crl, int nid, void *value, int crit, 29*e71b7053SJung-uk Kim unsigned long flags); 30*e71b7053SJung-uk Kim 31*e71b7053SJung-uk Kim void *X509_REVOKED_get_ext_d2i(const X509_REVOKED *r, int nid, int *crit, int *idx); 32*e71b7053SJung-uk Kim int X509_REVOKED_add1_ext_i2d(X509_REVOKED *r, int nid, void *value, int crit, 33*e71b7053SJung-uk Kim unsigned long flags); 34*e71b7053SJung-uk Kim 35*e71b7053SJung-uk Kim const STACK_OF(X509_EXTENSION) *X509_get0_extensions(const X509 *x); 36*e71b7053SJung-uk Kim const STACK_OF(X509_EXTENSION) *X509_CRL_get0_extensions(const X509_CRL *crl); 37*e71b7053SJung-uk Kim const STACK_OF(X509_EXTENSION) *X509_REVOKED_get0_extensions(const X509_REVOKED *r); 38*e71b7053SJung-uk Kim 39*e71b7053SJung-uk Kim=head1 DESCRIPTION 40*e71b7053SJung-uk Kim 41*e71b7053SJung-uk KimX509V3_get_ext_d2i() looks for an extension with OID B<nid> in the extensions 42*e71b7053SJung-uk KimB<x> and, if found, decodes it. If B<idx> is B<NULL> then only one 43*e71b7053SJung-uk Kimoccurrence of an extension is permissible otherwise the first extension after 44*e71b7053SJung-uk Kimindex B<*idx> is returned and B<*idx> updated to the location of the extension. 45*e71b7053SJung-uk KimIf B<crit> is not B<NULL> then B<*crit> is set to a status value: -2 if the 46*e71b7053SJung-uk Kimextension occurs multiple times (this is only returned if B<idx> is B<NULL>), 47*e71b7053SJung-uk Kim-1 if the extension could not be found, 0 if the extension is found and is 48*e71b7053SJung-uk Kimnot critical and 1 if critical. A pointer to an extension specific structure 49*e71b7053SJung-uk Kimor B<NULL> is returned. 50*e71b7053SJung-uk Kim 51*e71b7053SJung-uk KimX509V3_add1_i2d() adds extension B<value> to STACK B<*x> (allocating a new 52*e71b7053SJung-uk KimSTACK if necessary) using OID B<nid> and criticality B<crit> according 53*e71b7053SJung-uk Kimto B<flags>. 54*e71b7053SJung-uk Kim 55*e71b7053SJung-uk KimX509V3_EXT_d2i() attempts to decode the ASN.1 data contained in extension 56*e71b7053SJung-uk KimB<ext> and returns a pointer to an extension specific structure or B<NULL> 57*e71b7053SJung-uk Kimif the extension could not be decoded (invalid syntax or not supported). 58*e71b7053SJung-uk Kim 59*e71b7053SJung-uk KimX509V3_EXT_i2d() encodes the extension specific structure B<ext> 60*e71b7053SJung-uk Kimwith OID B<ext_nid> and criticality B<crit>. 61*e71b7053SJung-uk Kim 62*e71b7053SJung-uk KimX509_get_ext_d2i() and X509_add1_ext_i2d() operate on the extensions of 63*e71b7053SJung-uk Kimcertificate B<x>, they are otherwise identical to X509V3_get_d2i() and 64*e71b7053SJung-uk KimX509V3_add_i2d(). 65*e71b7053SJung-uk Kim 66*e71b7053SJung-uk KimX509_CRL_get_ext_d2i() and X509_CRL_add1_ext_i2d() operate on the extensions 67*e71b7053SJung-uk Kimof CRL B<crl>, they are otherwise identical to X509V3_get_d2i() and 68*e71b7053SJung-uk KimX509V3_add_i2d(). 69*e71b7053SJung-uk Kim 70*e71b7053SJung-uk KimX509_REVOKED_get_ext_d2i() and X509_REVOKED_add1_ext_i2d() operate on the 71*e71b7053SJung-uk Kimextensions of B<X509_REVOKED> structure B<r> (i.e for CRL entry extensions), 72*e71b7053SJung-uk Kimthey are otherwise identical to X509V3_get_d2i() and X509V3_add_i2d(). 73*e71b7053SJung-uk Kim 74*e71b7053SJung-uk KimX509_get0_extensions(), X509_CRL_get0_extensions() and 75*e71b7053SJung-uk KimX509_REVOKED_get0_extensions() return a stack of all the extensions 76*e71b7053SJung-uk Kimof a certificate a CRL or a CRL entry respectively. 77*e71b7053SJung-uk Kim 78*e71b7053SJung-uk Kim=head1 NOTES 79*e71b7053SJung-uk Kim 80*e71b7053SJung-uk KimIn almost all cases an extension can occur at most once and multiple 81*e71b7053SJung-uk Kimoccurrences is an error. Therefore the B<idx> parameter is usually B<NULL>. 82*e71b7053SJung-uk Kim 83*e71b7053SJung-uk KimThe B<flags> parameter may be one of the following values. 84*e71b7053SJung-uk Kim 85*e71b7053SJung-uk KimB<X509V3_ADD_DEFAULT> appends a new extension only if the extension does 86*e71b7053SJung-uk Kimnot already exist. An error is returned if the extension does already 87*e71b7053SJung-uk Kimexist. 88*e71b7053SJung-uk Kim 89*e71b7053SJung-uk KimB<X509V3_ADD_APPEND> appends a new extension, ignoring whether the extension 90*e71b7053SJung-uk Kimalready exists. 91*e71b7053SJung-uk Kim 92*e71b7053SJung-uk KimB<X509V3_ADD_REPLACE> replaces an extension if it exists otherwise appends 93*e71b7053SJung-uk Kima new extension. 94*e71b7053SJung-uk Kim 95*e71b7053SJung-uk KimB<X509V3_ADD_REPLACE_EXISTING> replaces an existing extension if it exists 96*e71b7053SJung-uk Kimotherwise returns an error. 97*e71b7053SJung-uk Kim 98*e71b7053SJung-uk KimB<X509V3_ADD_KEEP_EXISTING> appends a new extension only if the extension does 99*e71b7053SJung-uk Kimnot already exist. An error B<is not> returned if the extension does already 100*e71b7053SJung-uk Kimexist. 101*e71b7053SJung-uk Kim 102*e71b7053SJung-uk KimB<X509V3_ADD_DELETE> extension B<nid> is deleted: no new extension is added. 103*e71b7053SJung-uk Kim 104*e71b7053SJung-uk KimIf B<X509V3_ADD_SILENT> is ored with B<flags>: any error returned will not 105*e71b7053SJung-uk Kimbe added to the error queue. 106*e71b7053SJung-uk Kim 107*e71b7053SJung-uk KimThe function X509V3_get_d2i() will return B<NULL> if the extension is not 108*e71b7053SJung-uk Kimfound, occurs multiple times or cannot be decoded. It is possible to 109*e71b7053SJung-uk Kimdetermine the precise reason by checking the value of B<*crit>. 110*e71b7053SJung-uk Kim 111*e71b7053SJung-uk Kim=head1 SUPPORTED EXTENSIONS 112*e71b7053SJung-uk Kim 113*e71b7053SJung-uk KimThe following sections contain a list of all supported extensions 114*e71b7053SJung-uk Kimincluding their name and NID. 115*e71b7053SJung-uk Kim 116*e71b7053SJung-uk Kim=head2 PKIX Certificate Extensions 117*e71b7053SJung-uk Kim 118*e71b7053SJung-uk KimThe following certificate extensions are defined in PKIX standards such as 119*e71b7053SJung-uk KimRFC5280. 120*e71b7053SJung-uk Kim 121*e71b7053SJung-uk Kim Basic Constraints NID_basic_constraints 122*e71b7053SJung-uk Kim Key Usage NID_key_usage 123*e71b7053SJung-uk Kim Extended Key Usage NID_ext_key_usage 124*e71b7053SJung-uk Kim 125*e71b7053SJung-uk Kim Subject Key Identifier NID_subject_key_identifier 126*e71b7053SJung-uk Kim Authority Key Identifier NID_authority_key_identifier 127*e71b7053SJung-uk Kim 128*e71b7053SJung-uk Kim Private Key Usage Period NID_private_key_usage_period 129*e71b7053SJung-uk Kim 130*e71b7053SJung-uk Kim Subject Alternative Name NID_subject_alt_name 131*e71b7053SJung-uk Kim Issuer Alternative Name NID_issuer_alt_name 132*e71b7053SJung-uk Kim 133*e71b7053SJung-uk Kim Authority Information Access NID_info_access 134*e71b7053SJung-uk Kim Subject Information Access NID_sinfo_access 135*e71b7053SJung-uk Kim 136*e71b7053SJung-uk Kim Name Constraints NID_name_constraints 137*e71b7053SJung-uk Kim 138*e71b7053SJung-uk Kim Certificate Policies NID_certificate_policies 139*e71b7053SJung-uk Kim Policy Mappings NID_policy_mappings 140*e71b7053SJung-uk Kim Policy Constraints NID_policy_constraints 141*e71b7053SJung-uk Kim Inhibit Any Policy NID_inhibit_any_policy 142*e71b7053SJung-uk Kim 143*e71b7053SJung-uk Kim TLS Feature NID_tlsfeature 144*e71b7053SJung-uk Kim 145*e71b7053SJung-uk Kim=head2 Netscape Certificate Extensions 146*e71b7053SJung-uk Kim 147*e71b7053SJung-uk KimThe following are (largely obsolete) Netscape certificate extensions. 148*e71b7053SJung-uk Kim 149*e71b7053SJung-uk Kim Netscape Cert Type NID_netscape_cert_type 150*e71b7053SJung-uk Kim Netscape Base Url NID_netscape_base_url 151*e71b7053SJung-uk Kim Netscape Revocation Url NID_netscape_revocation_url 152*e71b7053SJung-uk Kim Netscape CA Revocation Url NID_netscape_ca_revocation_url 153*e71b7053SJung-uk Kim Netscape Renewal Url NID_netscape_renewal_url 154*e71b7053SJung-uk Kim Netscape CA Policy Url NID_netscape_ca_policy_url 155*e71b7053SJung-uk Kim Netscape SSL Server Name NID_netscape_ssl_server_name 156*e71b7053SJung-uk Kim Netscape Comment NID_netscape_comment 157*e71b7053SJung-uk Kim 158*e71b7053SJung-uk Kim=head2 Miscellaneous Certificate Extensions 159*e71b7053SJung-uk Kim 160*e71b7053SJung-uk Kim Strong Extranet ID NID_sxnet 161*e71b7053SJung-uk Kim Proxy Certificate Information NID_proxyCertInfo 162*e71b7053SJung-uk Kim 163*e71b7053SJung-uk Kim=head2 PKIX CRL Extensions 164*e71b7053SJung-uk Kim 165*e71b7053SJung-uk KimThe following are CRL extensions from PKIX standards such as RFC5280. 166*e71b7053SJung-uk Kim 167*e71b7053SJung-uk Kim CRL Number NID_crl_number 168*e71b7053SJung-uk Kim CRL Distribution Points NID_crl_distribution_points 169*e71b7053SJung-uk Kim Delta CRL Indicator NID_delta_crl 170*e71b7053SJung-uk Kim Freshest CRL NID_freshest_crl 171*e71b7053SJung-uk Kim Invalidity Date NID_invalidity_date 172*e71b7053SJung-uk Kim Issuing Distribution Point NID_issuing_distribution_point 173*e71b7053SJung-uk Kim 174*e71b7053SJung-uk KimThe following are CRL entry extensions from PKIX standards such as RFC5280. 175*e71b7053SJung-uk Kim 176*e71b7053SJung-uk Kim CRL Reason Code NID_crl_reason 177*e71b7053SJung-uk Kim Certificate Issuer NID_certificate_issuer 178*e71b7053SJung-uk Kim 179*e71b7053SJung-uk Kim=head2 OCSP Extensions 180*e71b7053SJung-uk Kim 181*e71b7053SJung-uk Kim OCSP Nonce NID_id_pkix_OCSP_Nonce 182*e71b7053SJung-uk Kim OCSP CRL ID NID_id_pkix_OCSP_CrlID 183*e71b7053SJung-uk Kim Acceptable OCSP Responses NID_id_pkix_OCSP_acceptableResponses 184*e71b7053SJung-uk Kim OCSP No Check NID_id_pkix_OCSP_noCheck 185*e71b7053SJung-uk Kim OCSP Archive Cutoff NID_id_pkix_OCSP_archiveCutoff 186*e71b7053SJung-uk Kim OCSP Service Locator NID_id_pkix_OCSP_serviceLocator 187*e71b7053SJung-uk Kim Hold Instruction Code NID_hold_instruction_code 188*e71b7053SJung-uk Kim 189*e71b7053SJung-uk Kim=head2 Certificate Transparency Extensions 190*e71b7053SJung-uk Kim 191*e71b7053SJung-uk KimThe following extensions are used by certificate transparency, RFC6962 192*e71b7053SJung-uk Kim 193*e71b7053SJung-uk Kim CT Precertificate SCTs NID_ct_precert_scts 194*e71b7053SJung-uk Kim CT Certificate SCTs NID_ct_cert_scts 195*e71b7053SJung-uk Kim 196*e71b7053SJung-uk Kim=head1 RETURN VALUES 197*e71b7053SJung-uk Kim 198*e71b7053SJung-uk KimX509V3_EXT_d2i() and *X509V3_get_d2i() return a pointer to an extension 199*e71b7053SJung-uk Kimspecific structure of B<NULL> if an error occurs. 200*e71b7053SJung-uk Kim 201*e71b7053SJung-uk KimX509V3_EXT_i2d() returns a pointer to an B<X509_EXTENSION> structure 202*e71b7053SJung-uk Kimor B<NULL> if an error occurs. 203*e71b7053SJung-uk Kim 204*e71b7053SJung-uk KimX509V3_add1_i2d() returns 1 if the operation is successful and 0 if it 205*e71b7053SJung-uk Kimfails due to a non-fatal error (extension not found, already exists, 206*e71b7053SJung-uk Kimcannot be encoded) or -1 due to a fatal error such as a memory allocation 207*e71b7053SJung-uk Kimfailure. 208*e71b7053SJung-uk Kim 209*e71b7053SJung-uk KimX509_get0_extensions(), X509_CRL_get0_extensions() and 210*e71b7053SJung-uk KimX509_REVOKED_get0_extensions() return a stack of extensions. They return 211*e71b7053SJung-uk KimNULL if no extensions are present. 212*e71b7053SJung-uk Kim 213*e71b7053SJung-uk Kim=head1 SEE ALSO 214*e71b7053SJung-uk Kim 215*e71b7053SJung-uk KimL<d2i_X509(3)>, 216*e71b7053SJung-uk KimL<ERR_get_error(3)>, 217*e71b7053SJung-uk KimL<X509_CRL_get0_by_serial(3)>, 218*e71b7053SJung-uk KimL<X509_get0_signature(3)>, 219*e71b7053SJung-uk KimL<X509_get_ext_d2i(3)>, 220*e71b7053SJung-uk KimL<X509_get_extension_flags(3)>, 221*e71b7053SJung-uk KimL<X509_get_pubkey(3)>, 222*e71b7053SJung-uk KimL<X509_get_subject_name(3)>, 223*e71b7053SJung-uk KimL<X509_get_version(3)>, 224*e71b7053SJung-uk KimL<X509_NAME_add_entry_by_txt(3)>, 225*e71b7053SJung-uk KimL<X509_NAME_ENTRY_get_object(3)>, 226*e71b7053SJung-uk KimL<X509_NAME_get_index_by_NID(3)>, 227*e71b7053SJung-uk KimL<X509_NAME_print_ex(3)>, 228*e71b7053SJung-uk KimL<X509_new(3)>, 229*e71b7053SJung-uk KimL<X509_sign(3)>, 230*e71b7053SJung-uk KimL<X509_verify_cert(3)> 231*e71b7053SJung-uk Kim 232*e71b7053SJung-uk Kim=head1 COPYRIGHT 233*e71b7053SJung-uk Kim 234*e71b7053SJung-uk KimCopyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. 235*e71b7053SJung-uk Kim 236*e71b7053SJung-uk KimLicensed under the OpenSSL license (the "License"). You may not use 237*e71b7053SJung-uk Kimthis file except in compliance with the License. You can obtain a copy 238*e71b7053SJung-uk Kimin the file LICENSE in the source distribution or at 239*e71b7053SJung-uk KimL<https://www.openssl.org/source/license.html>. 240*e71b7053SJung-uk Kim 241*e71b7053SJung-uk Kim=cut 242