5 ERR_load_crypto_strings, SSL_load_error_strings, ERR_free_strings -
6 load and free error strings
10 #include <openssl/err.h>
12 void ERR_load_crypto_strings(void);
13 void ERR_free_strings(void);
15 #include <openssl/ssl.h>
17 void SSL_load_error_strings(void);
21 ERR_load_crypto_strings() registers the error strings for all
22 B<libcrypto> functions. SSL_load_error_strings() does the same,
23 but also registers the B<libssl> error strings.
25 One of these functions should be called before generating
26 textual error messages. However, this is not required when memory
29 ERR_free_strings() frees all previously loaded error strings.
33 ERR_load_crypto_strings(), SSL_load_error_strings() and
34 ERR_free_strings() return no values.
38 L<err(3)|err(3)>, L<ERR_error_string(3)|ERR_error_string(3)>
42 ERR_load_error_strings(), SSL_load_error_strings() and
43 ERR_free_strings() are available in all versions of SSLeay and