SSL_load_client_CA_file.pod 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. =pod
  2. =head1 NAME
  3. SSL_load_client_CA_file,
  4. SSL_add_file_cert_subjects_to_stack,
  5. SSL_add_dir_cert_subjects_to_stack
  6. - load certificate names
  7. =head1 SYNOPSIS
  8. #include <openssl/ssl.h>
  9. STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file);
  10. int SSL_add_file_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
  11. const char *file)
  12. int SSL_add_dir_cert_subjects_to_stack(STACK_OF(X509_NAME) *stack,
  13. const char *dir)
  14. =head1 DESCRIPTION
  15. SSL_load_client_CA_file() reads certificates from I<file> and returns
  16. a STACK_OF(X509_NAME) with the subject names found.
  17. SSL_add_file_cert_subjects_to_stack() reads certificates from I<file>,
  18. and adds their subject name to the already existing I<stack>.
  19. SSL_add_dir_cert_subjects_to_stack() reads certificates from every
  20. file in the directory I<dir>, and adds their subject name to the
  21. already existing I<stack>.
  22. =head1 NOTES
  23. SSL_load_client_CA_file() reads a file of PEM formatted certificates and
  24. extracts the X509_NAMES of the certificates found. While the name suggests
  25. the specific usage as support function for
  26. L<SSL_CTX_set_client_CA_list(3)>,
  27. it is not limited to CA certificates.
  28. =head1 RETURN VALUES
  29. The following return values can occur:
  30. =over 4
  31. =item NULL
  32. The operation failed, check out the error stack for the reason.
  33. =item Pointer to STACK_OF(X509_NAME)
  34. Pointer to the subject names of the successfully read certificates.
  35. =back
  36. =head1 EXAMPLES
  37. Load names of CAs from file and use it as a client CA list:
  38. SSL_CTX *ctx;
  39. STACK_OF(X509_NAME) *cert_names;
  40. ...
  41. cert_names = SSL_load_client_CA_file("/path/to/CAfile.pem");
  42. if (cert_names != NULL)
  43. SSL_CTX_set_client_CA_list(ctx, cert_names);
  44. else
  45. /* error */
  46. ...
  47. =head1 SEE ALSO
  48. L<ssl(7)>,
  49. L<SSL_CTX_set_client_CA_list(3)>
  50. =head1 COPYRIGHT
  51. Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
  52. Licensed under the OpenSSL license (the "License"). You may not use
  53. this file except in compliance with the License. You can obtain a copy
  54. in the file LICENSE in the source distribution or at
  55. L<https://www.openssl.org/source/license.html>.
  56. =cut