1OPENSSL_ADD_ALL_ALGORITHMS(3) OpenSSL OPENSSL_ADD_ALL_ALGORITHMS(3)
2
3
4
6 OpenSSL_add_all_algorithms, OpenSSL_add_all_ciphers,
7 OpenSSL_add_all_digests, EVP_cleanup - add algorithms to internal table
8
10 #include <openssl/evp.h>
11
12 Deprecated:
13
14 # if OPENSSL_API_COMPAT < 0x10100000L
15 void OpenSSL_add_all_algorithms(void);
16 void OpenSSL_add_all_ciphers(void);
17 void OpenSSL_add_all_digests(void);
18
19 void EVP_cleanup(void)
20 # endif
21
23 OpenSSL keeps an internal table of digest algorithms and ciphers. It
24 uses this table to lookup ciphers via functions such as
25 EVP_get_cipher_byname().
26
27 OpenSSL_add_all_digests() adds all digest algorithms to the table.
28
29 OpenSSL_add_all_algorithms() adds all algorithms to the table (digests
30 and ciphers).
31
32 OpenSSL_add_all_ciphers() adds all encryption algorithms to the table
33 including password based encryption algorithms.
34
35 In versions prior to 1.1.0 EVP_cleanup() removed all ciphers and
36 digests from the table. It no longer has any effect in OpenSSL 1.1.0.
37
39 None of the functions return a value.
40
42 evp(7), EVP_DigestInit(3), EVP_EncryptInit(3)
43
45 The OpenSSL_add_all_algorithms(), OpenSSL_add_all_ciphers(),
46 OpenSSL_add_all_digests(), and EVP_cleanup(), functions were deprecated
47 in OpenSSL 1.1.0 by OPENSSL_init_crypto() and should not be used.
48
50 Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
51
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 <https://www.openssl.org/source/license.html>.
56
57
58
591.1.1 2018-09-11 OPENSSL_ADD_ALL_ALGORITHMS(3)