2000-09-19 23:12:57 +00:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2015-10-27 15:11:48 -04:00
|
|
|
SSL_library_init, OpenSSL_add_ssl_algorithms,
|
2000-09-19 23:12:57 +00:00
|
|
|
- initialize SSL library by registering algorithms
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
|
|
|
|
int SSL_library_init(void);
|
|
|
|
#define OpenSSL_add_ssl_algorithms() SSL_library_init()
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2010-04-06 15:03:27 +00:00
|
|
|
SSL_library_init() registers the available SSL/TLS ciphers and digests.
|
2000-09-19 23:12:57 +00:00
|
|
|
|
2015-10-27 15:11:48 -04:00
|
|
|
OpenSSL_add_ssl_algorithms() is a synonym for SSL_library_init().
|
2000-09-19 23:12:57 +00:00
|
|
|
|
|
|
|
=head1 NOTES
|
|
|
|
|
|
|
|
SSL_library_init() must be called before any other action takes place.
|
2006-03-12 00:37:55 +00:00
|
|
|
SSL_library_init() is not reentrant.
|
2000-09-19 23:12:57 +00:00
|
|
|
|
2000-09-21 17:21:15 +00:00
|
|
|
=head1 WARNING
|
2000-09-19 23:12:57 +00:00
|
|
|
|
2010-04-07 13:18:07 +00:00
|
|
|
SSL_library_init() adds ciphers and digests used directly and indirectly by
|
|
|
|
SSL/TLS.
|
2000-09-19 23:12:57 +00:00
|
|
|
|
|
|
|
=head1 RETURN VALUES
|
|
|
|
|
|
|
|
SSL_library_init() always returns "1", so it is safe to discard the return
|
|
|
|
value.
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2016-02-09 11:52:40 -05:00
|
|
|
L<ssl(3)>,
|
2015-08-17 15:21:33 -04:00
|
|
|
L<RAND_add(3)>
|
2000-09-19 23:12:57 +00:00
|
|
|
|
2016-02-09 11:52:40 -05:00
|
|
|
=head1 HISTORY
|
|
|
|
|
|
|
|
The SSL_library_init() and OpenSSL_add_ssl_algorithms() functions were
|
|
|
|
deprecated in OpenSSL 1.1.0 by OPENSSL_init_ssl().
|
|
|
|
|
2000-09-19 23:12:57 +00:00
|
|
|
=cut
|