2000-02-23 14:27:47 +00:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2013-06-12 22:42:08 +00:00
|
|
|
OpenSSL_add_all_algorithms, OpenSSL_add_all_ciphers, OpenSSL_add_all_digests, EVP_cleanup -
|
2000-09-14 21:23:28 +00:00
|
|
|
add algorithms to internal table
|
2000-02-23 14:27:47 +00:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
|
2018-12-03 09:59:11 +00:00
|
|
|
Deprecated since OpenSSL 1.1.0, can be hidden entirely by defining
|
|
|
|
B<OPENSSL_API_COMPAT> with a suitable version value, see
|
|
|
|
L<openssl_user_macros(7)>:
|
2016-04-04 14:28:58 +00:00
|
|
|
|
2016-04-06 10:13:25 +00:00
|
|
|
void OpenSSL_add_all_algorithms(void);
|
|
|
|
void OpenSSL_add_all_ciphers(void);
|
|
|
|
void OpenSSL_add_all_digests(void);
|
|
|
|
|
|
|
|
void EVP_cleanup(void)
|
2000-02-23 14:27:47 +00:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
OpenSSL keeps an internal table of digest algorithms and ciphers. It uses
|
2017-09-02 13:35:50 +00:00
|
|
|
this table to lookup ciphers via functions such as EVP_get_cipher_byname().
|
2000-02-23 14:27:47 +00:00
|
|
|
|
|
|
|
OpenSSL_add_all_digests() adds all digest algorithms to the table.
|
|
|
|
|
|
|
|
OpenSSL_add_all_algorithms() adds all algorithms to the table (digests and
|
|
|
|
ciphers).
|
|
|
|
|
|
|
|
OpenSSL_add_all_ciphers() adds all encryption algorithms to the table including
|
|
|
|
password based encryption algorithms.
|
|
|
|
|
2016-04-04 14:28:58 +00:00
|
|
|
In versions prior to 1.1.0 EVP_cleanup() removed all ciphers and digests from
|
|
|
|
the table. It no longer has any effect in OpenSSL 1.1.0.
|
2000-02-23 14:27:47 +00:00
|
|
|
|
|
|
|
=head1 RETURN VALUES
|
|
|
|
|
|
|
|
None of the functions return a value.
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2016-11-11 08:33:09 +00:00
|
|
|
L<evp(7)>, L<EVP_DigestInit(3)>,
|
2015-08-17 19:21:33 +00:00
|
|
|
L<EVP_EncryptInit(3)>
|
2000-02-23 14:27:47 +00:00
|
|
|
|
2016-02-09 16:52:40 +00:00
|
|
|
=head1 HISTORY
|
|
|
|
|
|
|
|
The OpenSSL_add_all_algorithms(), OpenSSL_add_all_ciphers(),
|
|
|
|
OpenSSL_add_all_digests(), and EVP_cleanup(), functions
|
2017-09-02 13:35:50 +00:00
|
|
|
were deprecated in OpenSSL 1.1.0 by OPENSSL_init_crypto() and should
|
|
|
|
not be used.
|
2016-02-09 16:52:40 +00:00
|
|
|
|
2016-05-18 15:44:05 +00:00
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2017-09-02 13:35:50 +00:00
|
|
|
Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
|
2016-05-18 15:44:05 +00:00
|
|
|
|
2018-12-06 13:04:44 +00:00
|
|
|
Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 15:44:05 +00:00
|
|
|
this file except in compliance with the License. You can obtain a copy
|
|
|
|
in the file LICENSE in the source distribution or at
|
|
|
|
L<https://www.openssl.org/source/license.html>.
|
|
|
|
|
|
|
|
=cut
|