X509v3_get_ext_by_NID.pod 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. =pod
  2. =head1 NAME
  3. X509v3_get_ext_count, X509v3_get_ext, X509v3_get_ext_by_NID,
  4. X509v3_get_ext_by_OBJ, X509v3_get_ext_by_critical, X509v3_delete_ext,
  5. X509v3_add_ext, X509_get_ext_count, X509_get_ext,
  6. X509_get_ext_by_NID, X509_get_ext_by_OBJ, X509_get_ext_by_critical,
  7. X509_delete_ext, X509_add_ext, X509_CRL_get_ext_count, X509_CRL_get_ext,
  8. X509_CRL_get_ext_by_NID, X509_CRL_get_ext_by_OBJ, X509_CRL_get_ext_by_critical,
  9. X509_CRL_delete_ext, X509_CRL_add_ext, X509_REVOKED_get_ext_count,
  10. X509_REVOKED_get_ext, X509_REVOKED_get_ext_by_NID, X509_REVOKED_get_ext_by_OBJ,
  11. X509_REVOKED_get_ext_by_critical, X509_REVOKED_delete_ext,
  12. X509_REVOKED_add_ext - extension stack utility functions
  13. =head1 SYNOPSIS
  14. #include <openssl/x509.h>
  15. int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x);
  16. X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc);
  17. int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x,
  18. int nid, int lastpos);
  19. int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x,
  20. const ASN1_OBJECT *obj, int lastpos);
  21. int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x,
  22. int crit, int lastpos);
  23. X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc);
  24. STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x,
  25. X509_EXTENSION *ex, int loc);
  26. int X509_get_ext_count(const X509 *x);
  27. X509_EXTENSION *X509_get_ext(const X509 *x, int loc);
  28. int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos);
  29. int X509_get_ext_by_OBJ(const X509 *x, const ASN1_OBJECT *obj, int lastpos);
  30. int X509_get_ext_by_critical(const X509 *x, int crit, int lastpos);
  31. X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
  32. int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
  33. int X509_CRL_get_ext_count(const X509_CRL *x);
  34. X509_EXTENSION *X509_CRL_get_ext(const X509_CRL *x, int loc);
  35. int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid, int lastpos);
  36. int X509_CRL_get_ext_by_OBJ(const X509_CRL *x, const ASN1_OBJECT *obj,
  37. int lastpos);
  38. int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit, int lastpos);
  39. X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc);
  40. int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc);
  41. int X509_REVOKED_get_ext_count(const X509_REVOKED *x);
  42. X509_EXTENSION *X509_REVOKED_get_ext(const X509_REVOKED *x, int loc);
  43. int X509_REVOKED_get_ext_by_NID(const X509_REVOKED *x, int nid, int lastpos);
  44. int X509_REVOKED_get_ext_by_OBJ(const X509_REVOKED *x, const ASN1_OBJECT *obj,
  45. int lastpos);
  46. int X509_REVOKED_get_ext_by_critical(const X509_REVOKED *x, int crit, int lastpos);
  47. X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc);
  48. int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc);
  49. =head1 DESCRIPTION
  50. X509v3_get_ext_count() retrieves the number of extensions in I<x>.
  51. X509v3_get_ext() retrieves extension I<loc> from I<x>. The index I<loc>
  52. can take any value from 0 to X509_get_ext_count(I<x>) - 1. The returned
  53. extension is an internal pointer which B<MUST NOT> be freed by the
  54. application.
  55. X509v3_get_ext_by_NID() and X509v3_get_ext_by_OBJ() look for an extension
  56. with I<nid> or I<obj> from extension STACK I<x>. The search starts from the
  57. extension after I<lastpos> or from the beginning if I<lastpos> is -1. If
  58. the extension is found, its index is returned, otherwise -1 is returned.
  59. X509v3_get_ext_by_critical() is similar to X509v3_get_ext_by_NID() except it
  60. looks for an extension of criticality I<crit>. A zero value for I<crit>
  61. looks for a non-critical extension. A nonzero value looks for a critical
  62. extension.
  63. X509v3_delete_ext() deletes the extension with index I<loc> from I<x>.
  64. The deleted extension is returned and must be freed by the caller.
  65. If I<loc> is an invalid index value, NULL is returned.
  66. X509v3_add_ext() adds extension I<ex> to STACK I<*x> at position I<loc>. If
  67. I<loc> is -1, the new extension is added to the end. If I<*x> is NULL,
  68. a new STACK will be allocated. The passed extension I<ex> is duplicated
  69. internally so it must be freed after use.
  70. X509_get_ext_count(), X509_get_ext(), X509_get_ext_by_NID(),
  71. X509_get_ext_by_OBJ(), X509_get_ext_by_critical(), X509_delete_ext()
  72. and X509_add_ext() operate on the extensions of certificate I<x>. They are
  73. otherwise identical to the X509v3 functions.
  74. X509_CRL_get_ext_count(), X509_CRL_get_ext(), X509_CRL_get_ext_by_NID(),
  75. X509_CRL_get_ext_by_OBJ(), X509_CRL_get_ext_by_critical(),
  76. X509_CRL_delete_ext() and X509_CRL_add_ext() operate on the extensions of
  77. CRL I<x>. They are otherwise identical to the X509v3 functions.
  78. X509_REVOKED_get_ext_count(), X509_REVOKED_get_ext(),
  79. X509_REVOKED_get_ext_by_NID(), X509_REVOKED_get_ext_by_OBJ(),
  80. X509_REVOKED_get_ext_by_critical(), X509_REVOKED_delete_ext() and
  81. X509_REVOKED_add_ext() operate on the extensions of CRL entry I<x>.
  82. They are otherwise identical to the X509v3 functions.
  83. =head1 NOTES
  84. These functions are used to examine stacks of extensions directly.
  85. Applications that want to parse or encode and add an extension should
  86. use the extension encode and decode functions instead, such as
  87. X509_add1_ext_i2d() and X509_get_ext_d2i().
  88. For X509v3_get_ext_by_NID(), X509v3_get_ext_by_OBJ(),
  89. X509v3_get_ext_by_critical() and its variants, a zero index return value
  90. is not an error since extension STACK I<x> indices start from zero.
  91. These search functions start from the extension B<after> the I<lastpos> parameter
  92. so it should initially be set to -1. If it is set to zero, the initial extension
  93. will not be checked.
  94. X509v3_delete_ext() and its variants are a bit counter-intuitive
  95. because these functions do not free the extension they delete.
  96. They return an B<X509_EXTENSION> object which must be explicitly freed
  97. using X509_EXTENSION_free().
  98. =head1 RETURN VALUES
  99. X509v3_get_ext_count() returns the extension count or 0 for failure.
  100. X509v3_get_ext(), X509v3_delete_ext() and X509_delete_ext() return an
  101. B<X509_EXTENSION> structure or NULL if an error occurs.
  102. X509v3_get_ext_by_OBJ() and X509v3_get_ext_by_critical() return
  103. the extension index or -1 if an error occurs.
  104. X509v3_get_ext_by_NID() returns the extension index or negative values if an
  105. error occurs.
  106. X509v3_add_ext() returns a STACK of extensions or NULL on error.
  107. X509_add_ext() returns 1 on success and 0 on error.
  108. =head1 SEE ALSO
  109. L<X509V3_get_d2i(3)>
  110. =head1 COPYRIGHT
  111. Copyright 2015-2022 The OpenSSL Project Authors. All Rights Reserved.
  112. Licensed under the Apache License 2.0 (the "License"). You may not use
  113. this file except in compliance with the License. You can obtain a copy
  114. in the file LICENSE in the source distribution or at
  115. L<https://www.openssl.org/source/license.html>.
  116. =cut