summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-04-06 15:03:27 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-04-06 15:03:27 +0000
commitd4a45bf31a19b7f5256a5239815b03f793d1d1d6 (patch)
tree5ec31ae7c5cd086fe45aa9cabea69cbc23827f65 /doc
parent60e24554bb3c8eba607c4f30ec26f97d35391cea (diff)
Remove obsolete PRNG note. Add comment about use of SHA256 et al.
Diffstat (limited to 'doc')
-rw-r--r--doc/ssl/SSL_library_init.pod9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/ssl/SSL_library_init.pod b/doc/ssl/SSL_library_init.pod
index eed526e47e..e7fbefbfac 100644
--- a/doc/ssl/SSL_library_init.pod
+++ b/doc/ssl/SSL_library_init.pod
@@ -15,7 +15,7 @@ SSL_library_init, OpenSSL_add_ssl_algorithms, SSLeay_add_ssl_algorithms
=head1 DESCRIPTION
-SSL_library_init() registers the available ciphers and digests.
+SSL_library_init() registers the available SSL/TLS ciphers and digests.
OpenSSL_add_ssl_algorithms() and SSLeay_add_ssl_algorithms() are synonyms
for SSL_library_init().
@@ -27,9 +27,10 @@ SSL_library_init() is not reentrant.
=head1 WARNING
-SSL_library_init() only registers ciphers. Another important initialization
-is the seeding of the PRNG (Pseudo Random Number Generator), which has to
-be performed separately.
+SSL_library_init() mainly adds ciphers and digests used directly by SSL/TLS.
+In some cases this is not sufficient and errors about unknown algorithms
+will occur: for example when an attempt is made to use a certificate using
+SHA256. This can be resolved by also calling OpenSSL_add_all_algorithms().
=head1 EXAMPLES