ERR_load_crypto_strings.pod 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. =pod
  2. =head1 NAME
  3. ERR_load_crypto_strings, SSL_load_error_strings, ERR_free_strings -
  4. load and free error strings
  5. =head1 SYNOPSIS
  6. Deprecated:
  7. #include <openssl/err.h>
  8. #if OPENSSL_API_COMPAT < 0x10100000L
  9. void ERR_load_crypto_strings(void);
  10. void ERR_free_strings(void);
  11. #endif
  12. #include <openssl/ssl.h>
  13. #if OPENSSL_API_COMPAT < 0x10100000L
  14. void SSL_load_error_strings(void);
  15. #endif
  16. =head1 DESCRIPTION
  17. ERR_load_crypto_strings() registers the error strings for all
  18. B<libcrypto> functions. SSL_load_error_strings() does the same,
  19. but also registers the B<libssl> error strings.
  20. In versions prior to OpenSSL 1.1.0,
  21. ERR_free_strings() releases any resources created by the above functions.
  22. =head1 RETURN VALUES
  23. ERR_load_crypto_strings(), SSL_load_error_strings() and
  24. ERR_free_strings() return no values.
  25. =head1 SEE ALSO
  26. L<ERR_error_string(3)>
  27. =head1 HISTORY
  28. The ERR_load_crypto_strings(), SSL_load_error_strings(), and
  29. ERR_free_strings() functions were deprecated in OpenSSL 1.1.0 by
  30. OPENSSL_init_crypto() and OPENSSL_init_ssl() and should not be used.
  31. =head1 COPYRIGHT
  32. Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
  33. Licensed under the OpenSSL license (the "License"). You may not use
  34. this file except in compliance with the License. You can obtain a copy
  35. in the file LICENSE in the source distribution or at
  36. L<https://www.openssl.org/source/license.html>.
  37. =cut