Remove obsolete PRNG note. Add comment about use of SHA256 et al.
authorDr. Stephen Henson <steve@openssl.org>
Tue, 6 Apr 2010 15:05:47 +0000 (15:05 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Tue, 6 Apr 2010 15:05:47 +0000 (15:05 +0000)
doc/ssl/SSL_library_init.pod

index eed526e47efec90a3f035b1be2168e4730e5c587..e7fbefbfacb71e1b100f95edf5115ffd55a06a54 100644 (file)
@@ -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