From 5a30471edc26efd38cb052d1ed923f2626e60c45 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 20 Mar 2022 18:42:49 -0400 Subject: Remove SSL_library_init call (#1110) a) It's already called by initializing the Bindings in cryptography b) I'm pretty sure it's not actually necessary at all --- src/OpenSSL/SSL.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/OpenSSL') diff --git a/src/OpenSSL/SSL.py b/src/OpenSSL/SSL.py index 4b9b79b..3e6ee1b 100644 --- a/src/OpenSSL/SSL.py +++ b/src/OpenSSL/SSL.py @@ -2618,8 +2618,3 @@ class Connection: self._ssl, _lib.TLSEXT_STATUSTYPE_ocsp ) _openssl_assert(rc == 1) - - -# This is similar to the initialization calls at the end of OpenSSL/crypto.py -# but is exercised mostly by the Context initializer. -_lib.SSL_library_init() -- cgit v1.2.1