1ERR_LOAD_CRYPTO_STRINGS(3) OpenSSL ERR_LOAD_CRYPTO_STRINGS(3)
2
3
4
6 ERR_load_crypto_strings, SSL_load_error_strings, ERR_free_strings -
7 load and free error strings
8
10 Deprecated:
11
12 #include <openssl/err.h>
13
14 #if OPENSSL_API_COMPAT < 0x10100000L
15 void ERR_load_crypto_strings(void);
16 void ERR_free_strings(void);
17 #endif
18
19 #include <openssl/ssl.h>
20
21 #if OPENSSL_API_COMPAT < 0x10100000L
22 void SSL_load_error_strings(void);
23 #endif
24
26 ERR_load_crypto_strings() registers the error strings for all libcrypto
27 functions. SSL_load_error_strings() does the same, but also registers
28 the libssl error strings.
29
30 In versions prior to OpenSSL 1.1.0, ERR_free_strings() releases any
31 resources created by the above functions.
32
34 ERR_load_crypto_strings(), SSL_load_error_strings() and
35 ERR_free_strings() return no values.
36
38 ERR_error_string(3)
39
41 The ERR_load_crypto_strings(), SSL_load_error_strings(), and
42 ERR_free_strings() functions were deprecated in OpenSSL 1.1.0 by
43 OPENSSL_init_crypto() and OPENSSL_init_ssl() and should not be used.
44
46 Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
47
48 Licensed under the OpenSSL license (the "License"). You may not use
49 this file except in compliance with the License. You can obtain a copy
50 in the file LICENSE in the source distribution or at
51 <https://www.openssl.org/source/license.html>.
52
53
54
551.1.1q 2023-02-06 ERR_LOAD_CRYPTO_STRINGS(3)