1OPENSSL_ADD_ALL_ALGORITHMS(3ossl)   OpenSSL  OPENSSL_ADD_ALL_ALGORITHMS(3ossl)
2
3
4

NAME

6       OpenSSL_add_all_algorithms, OpenSSL_add_all_ciphers,
7       OpenSSL_add_all_digests, EVP_cleanup - add algorithms to internal table
8

SYNOPSIS

10        #include <openssl/evp.h>
11
12       The following functions have been deprecated since OpenSSL 1.1.0, and
13       can be hidden entirely by defining OPENSSL_API_COMPAT with a suitable
14       version value, see openssl_user_macros(7):
15
16        void OpenSSL_add_all_algorithms(void);
17        void OpenSSL_add_all_ciphers(void);
18        void OpenSSL_add_all_digests(void);
19
20        void EVP_cleanup(void);
21

DESCRIPTION

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

RETURN VALUES

39       None of the functions return a value.
40

SEE ALSO

42       evp(7), EVP_DigestInit(3), EVP_EncryptInit(3)
43

HISTORY

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-2021 The OpenSSL Project Authors. All Rights Reserved.
51
52       Licensed under the Apache License 2.0 (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
593.0.5                             2022-07-05 OPENSSL_ADD_ALL_ALGORITHMS(3ossl)
Impressum