X509_STORE_get0_param.pod 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. =pod
  2. =head1 NAME
  3. X509_STORE_get0_param, X509_STORE_set1_param,
  4. X509_STORE_get0_objects, X509_STORE_get1_all_certs
  5. - X509_STORE setter and getter functions
  6. =head1 SYNOPSIS
  7. #include <openssl/x509_vfy.h>
  8. X509_VERIFY_PARAM *X509_STORE_get0_param(const X509_STORE *ctx);
  9. int X509_STORE_set1_param(X509_STORE *ctx, const X509_VERIFY_PARAM *pm);
  10. STACK_OF(X509_OBJECT) *X509_STORE_get0_objects(const X509_STORE *ctx);
  11. STACK_OF(X509) *X509_STORE_get1_all_certs(X509_STORE *st);
  12. =head1 DESCRIPTION
  13. X509_STORE_set1_param() sets the verification parameters
  14. to B<pm> for B<ctx>.
  15. X509_STORE_get0_param() retrieves an internal pointer to the verification
  16. parameters for B<ctx>. The returned pointer must not be freed by the
  17. calling application
  18. X509_STORE_get0_objects() retrieves an internal pointer to the store's
  19. X509 object cache. The cache contains B<X509> and B<X509_CRL> objects. The
  20. returned pointer must not be freed by the calling application.
  21. X509_STORE_get1_all_certs() returns a list of all certificates in the store.
  22. The caller is responsible for freeing the returned list.
  23. =head1 RETURN VALUES
  24. X509_STORE_get0_param() returns a pointer to an
  25. B<X509_VERIFY_PARAM> structure.
  26. X509_STORE_set1_param() returns 1 for success and 0 for failure.
  27. X509_STORE_get0_objects() returns a pointer to a stack of B<X509_OBJECT>.
  28. X509_STORE_get1_all_certs() returns a pointer to a stack of the retrieved
  29. certificates on success, else NULL.
  30. =head1 SEE ALSO
  31. L<X509_STORE_new(3)>
  32. =head1 HISTORY
  33. B<X509_STORE_get0_param> and B<X509_STORE_get0_objects> were added in
  34. OpenSSL 1.1.0.
  35. B<X509_STORE_get1_certs> was added in OpenSSL 3.0.
  36. =head1 COPYRIGHT
  37. Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
  38. Licensed under the Apache License 2.0 (the "License"). You may not use
  39. this file except in compliance with the License. You can obtain a copy
  40. in the file LICENSE in the source distribution or at
  41. L<https://www.openssl.org/source/license.html>.
  42. =cut