![]() | ![]() | |||||||||||||||||||
| ||||||||||||||||||||
| OpenSSL_add_all_algorithms(3)
NAMEOpenSSL_add_all_algorithms, OpenSSL_add_all_ciphers, OpenSSL_add_all_digests, EVP_cleanup - add algorithms to internal table
SYNOPSIS#include <openssl/evp.h> void OpenSSL_add_all_algorithms(void); void OpenSSL_add_all_ciphers(void); void OpenSSL_add_all_digests(void); void EVP_cleanup(void);
DESCRIPTION
OpenSSL keeps an internal table of digest algorithms and ciphers. It uses
this table to lookup ciphers via functions such as
RETURN VALUESNone of the functions return a value.
NOTES
A typical application will call
An application does not need to add algorithms to use them explicitly, for
example by The cipher and digest lookup functions are used in many parts of the library. If the table is not initialized several functions will misbehave and complain they cannot find algorithms. This includes the PEM, PKCS#12, SSL and S/MIME libraries. This is a common query in the OpenSSL mailing lists.
Calling
BUGSAlthough the functions do not return error codes it is possible for them to fail. This will only happen as a result of a memory allocation failure so this is not too much of a problem in practice.
SEE ALSO | |||||||||||||||||||