- /*
- * Avoid deprecated routines, even if they're still documented,
- * as random versions of OpenSSL might not make them available.
- * XXX - what's the minimum OpenSSL version we should support?
- * And what about libressl?
- */
-#if defined(OPENSSL_VERSION_NUMBER) >= 0x10100000L
- /* 1.1.0 or later */
- OPENSSL_init_ssl(0, NULL);
- OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS | OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
-#else