> Is it required to call SSL_library_init() if I only want to use > some crypto > functionalities?
All SSL_library_init does is add ciphers and digests to the EVP table. If you don't need any ciphers and digests accessible through the EVP interface or you add those ciphers and digests yourself, you do not need to call SSL_library_init. Look at the ssl/ssl_algs.c file. DS ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [email protected] Automated List Manager [EMAIL PROTECTED]
