X509V3_get_d2i.pod 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. =pod
  2. =head1 NAME
  3. X509V3_get_d2i, X509V3_add1_i2d, X509V3_EXT_d2i, X509V3_EXT_i2d,
  4. X509_get_ext_d2i, X509_add1_ext_i2d,
  5. X509_CRL_get_ext_d2i, X509_CRL_add1_ext_i2d,
  6. X509_REVOKED_get_ext_d2i, X509_REVOKED_add1_ext_i2d,
  7. X509_get0_extensions, X509_CRL_get0_extensions,
  8. X509_REVOKED_get0_extensions - X509 extension decode and encode functions
  9. =head1 SYNOPSIS
  10. #include <openssl/x509v3.h>
  11. void *X509V3_get_d2i(const STACK_OF(X509_EXTENSION) *x, int nid, int *crit,
  12. int *idx);
  13. int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value,
  14. int crit, unsigned long flags);
  15. void *X509V3_EXT_d2i(X509_EXTENSION *ext);
  16. X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc);
  17. void *X509_get_ext_d2i(const X509 *x, int nid, int *crit, int *idx);
  18. int X509_add1_ext_i2d(X509 *x, int nid, void *value, int crit,
  19. unsigned long flags);
  20. void *X509_CRL_get_ext_d2i(const X509_CRL *crl, int nid, int *crit, int *idx);
  21. int X509_CRL_add1_ext_i2d(X509_CRL *crl, int nid, void *value, int crit,
  22. unsigned long flags);
  23. void *X509_REVOKED_get_ext_d2i(const X509_REVOKED *r, int nid, int *crit, int *idx);
  24. int X509_REVOKED_add1_ext_i2d(X509_REVOKED *r, int nid, void *value, int crit,
  25. unsigned long flags);
  26. const STACK_OF(X509_EXTENSION) *X509_get0_extensions(const X509 *x);
  27. const STACK_OF(X509_EXTENSION) *X509_CRL_get0_extensions(const X509_CRL *crl);
  28. const STACK_OF(X509_EXTENSION) *X509_REVOKED_get0_extensions(const X509_REVOKED *r);
  29. =head1 DESCRIPTION
  30. X509V3_get_d2i() looks for an extension with OID I<nid> in the extensions
  31. I<x> and, if found, decodes it. If I<idx> is NULL then only one
  32. occurrence of an extension is permissible, otherwise the first extension after
  33. index I<*idx> is returned and I<*idx> updated to the location of the extension.
  34. If I<crit> is not NULL then I<*crit> is set to a status value: -2 if the
  35. extension occurs multiple times (this is only returned if I<idx> is NULL),
  36. -1 if the extension could not be found, 0 if the extension is found and is
  37. not critical and 1 if critical. A pointer to an extension specific structure
  38. or NULL is returned.
  39. X509V3_add1_i2d() adds extension I<value> to STACK I<*x> (allocating a new
  40. STACK if necessary) using OID I<nid> and criticality I<crit> according
  41. to I<flags>.
  42. X509V3_EXT_d2i() attempts to decode the ASN.1 data contained in extension
  43. I<ext> and returns a pointer to an extension specific structure or NULL
  44. if the extension could not be decoded (invalid syntax or not supported).
  45. X509V3_EXT_i2d() encodes the extension specific structure I<ext_struc>
  46. with OID I<ext_nid> and criticality I<crit>.
  47. X509_get_ext_d2i() and X509_add1_ext_i2d() operate on the extensions of
  48. certificate I<x>. They are otherwise identical to X509V3_get_d2i() and
  49. X509V3_add1_i2d().
  50. X509_CRL_get_ext_d2i() and X509_CRL_add1_ext_i2d() operate on the extensions
  51. of CRL I<crl>. They are otherwise identical to X509V3_get_d2i() and
  52. X509V3_add1_i2d().
  53. X509_REVOKED_get_ext_d2i() and X509_REVOKED_add1_ext_i2d() operate on the
  54. extensions of B<X509_REVOKED> structure I<r> (i.e for CRL entry extensions).
  55. They are otherwise identical to X509V3_get_d2i() and X509V3_add1_i2d().
  56. X509_get0_extensions(), X509_CRL_get0_extensions() and
  57. X509_REVOKED_get0_extensions() return a STACK of all the extensions
  58. of a certificate, a CRL or a CRL entry respectively.
  59. =head1 NOTES
  60. In almost all cases an extension can occur at most once and multiple
  61. occurrences is an error. Therefore, the I<idx> parameter is usually NULL.
  62. The I<flags> parameter may be one of the following values.
  63. B<X509V3_ADD_DEFAULT> appends a new extension only if the extension does
  64. not exist. An error is returned if the extension exists.
  65. B<X509V3_ADD_APPEND> appends a new extension, ignoring whether the extension
  66. exists.
  67. B<X509V3_ADD_REPLACE> replaces an existing extension. If the extension does
  68. not exist, appends a new extension.
  69. B<X509V3_ADD_REPLACE_EXISTING> replaces an existing extension. If the
  70. extension does not exist, returns an error.
  71. B<X509V3_ADD_KEEP_EXISTING> appends a new extension only if the extension does
  72. not exist. An error is B<not> returned if the extension exists.
  73. B<X509V3_ADD_DELETE> deletes and frees an existing extension. If the extension
  74. does not exist, returns an error. No new extension is added.
  75. If B<X509V3_ADD_SILENT> is bitwise ORed with I<flags>: any error returned
  76. will not be added to the error queue.
  77. The function X509V3_get_d2i() and its variants
  78. will return NULL if the extension is not
  79. found, occurs multiple times or cannot be decoded. It is possible to
  80. determine the precise reason by checking the value of I<*crit>.
  81. The returned pointer must be explicitly freed.
  82. The function X509V3_add1_i2d() and its variants allocate B<X509_EXTENSION>
  83. objects on STACK I<*x> depending on I<flags>. The B<X509_EXTENSION> objects
  84. must be explicitly freed using X509_EXTENSION_free().
  85. =head1 SUPPORTED EXTENSIONS
  86. The following sections contain a list of all supported extensions
  87. including their name and NID.
  88. =head2 PKIX Certificate Extensions
  89. The following certificate extensions are defined in PKIX standards such as
  90. RFC5280.
  91. Basic Constraints NID_basic_constraints
  92. Key Usage NID_key_usage
  93. Extended Key Usage NID_ext_key_usage
  94. Subject Key Identifier NID_subject_key_identifier
  95. Authority Key Identifier NID_authority_key_identifier
  96. Private Key Usage Period NID_private_key_usage_period
  97. Subject Alternative Name NID_subject_alt_name
  98. Issuer Alternative Name NID_issuer_alt_name
  99. Authority Information Access NID_info_access
  100. Subject Information Access NID_sinfo_access
  101. Name Constraints NID_name_constraints
  102. Certificate Policies NID_certificate_policies
  103. Policy Mappings NID_policy_mappings
  104. Policy Constraints NID_policy_constraints
  105. Inhibit Any Policy NID_inhibit_any_policy
  106. TLS Feature NID_tlsfeature
  107. =head2 Netscape Certificate Extensions
  108. The following are (largely obsolete) Netscape certificate extensions.
  109. Netscape Cert Type NID_netscape_cert_type
  110. Netscape Base Url NID_netscape_base_url
  111. Netscape Revocation Url NID_netscape_revocation_url
  112. Netscape CA Revocation Url NID_netscape_ca_revocation_url
  113. Netscape Renewal Url NID_netscape_renewal_url
  114. Netscape CA Policy Url NID_netscape_ca_policy_url
  115. Netscape SSL Server Name NID_netscape_ssl_server_name
  116. Netscape Comment NID_netscape_comment
  117. =head2 Miscellaneous Certificate Extensions
  118. Strong Extranet ID NID_sxnet
  119. Proxy Certificate Information NID_proxyCertInfo
  120. =head2 PKIX CRL Extensions
  121. The following are CRL extensions from PKIX standards such as RFC5280.
  122. CRL Number NID_crl_number
  123. CRL Distribution Points NID_crl_distribution_points
  124. Delta CRL Indicator NID_delta_crl
  125. Freshest CRL NID_freshest_crl
  126. Invalidity Date NID_invalidity_date
  127. Issuing Distribution Point NID_issuing_distribution_point
  128. The following are CRL entry extensions from PKIX standards such as RFC5280.
  129. CRL Reason Code NID_crl_reason
  130. Certificate Issuer NID_certificate_issuer
  131. =head2 OCSP Extensions
  132. OCSP Nonce NID_id_pkix_OCSP_Nonce
  133. OCSP CRL ID NID_id_pkix_OCSP_CrlID
  134. Acceptable OCSP Responses NID_id_pkix_OCSP_acceptableResponses
  135. OCSP No Check NID_id_pkix_OCSP_noCheck
  136. OCSP Archive Cutoff NID_id_pkix_OCSP_archiveCutoff
  137. OCSP Service Locator NID_id_pkix_OCSP_serviceLocator
  138. Hold Instruction Code NID_hold_instruction_code
  139. =head2 Certificate Transparency Extensions
  140. The following extensions are used by certificate transparency, RFC6962
  141. CT Precertificate SCTs NID_ct_precert_scts
  142. CT Certificate SCTs NID_ct_cert_scts
  143. =head1 RETURN VALUES
  144. X509V3_get_d2i(), its variants, and X509V3_EXT_d2i() return
  145. a pointer to an extension specific structure or NULL if an error occurs.
  146. X509V3_add1_i2d() and its variants return 1 if the operation is successful
  147. and 0 if it fails due to a non-fatal error (extension not found, already exists,
  148. cannot be encoded) or -1 due to a fatal error such as a memory allocation
  149. failure.
  150. X509V3_EXT_i2d() returns a pointer to an B<X509_EXTENSION> structure
  151. or NULL if an error occurs.
  152. X509_get0_extensions(), X509_CRL_get0_extensions() and
  153. X509_REVOKED_get0_extensions() return a stack of extensions. They return
  154. NULL if no extensions are present.
  155. =head1 SEE ALSO
  156. L<d2i_X509(3)>,
  157. L<ERR_get_error(3)>,
  158. L<X509_CRL_get0_by_serial(3)>,
  159. L<X509_get0_signature(3)>,
  160. L<X509_get_ext_d2i(3)>,
  161. L<X509_get_extension_flags(3)>,
  162. L<X509_get_pubkey(3)>,
  163. L<X509_get_subject_name(3)>,
  164. L<X509_get_version(3)>,
  165. L<X509_NAME_add_entry_by_txt(3)>,
  166. L<X509_NAME_ENTRY_get_object(3)>,
  167. L<X509_NAME_get_index_by_NID(3)>,
  168. L<X509_NAME_print_ex(3)>,
  169. L<X509_new(3)>,
  170. L<X509_sign(3)>,
  171. L<X509_verify_cert(3)>
  172. =head1 COPYRIGHT
  173. Copyright 2015-2024 The OpenSSL Project Authors. All Rights Reserved.
  174. Licensed under the Apache License 2.0 (the "License"). You may not use
  175. this file except in compliance with the License. You can obtain a copy
  176. in the file LICENSE in the source distribution or at
  177. L<https://www.openssl.org/source/license.html>.
  178. =cut