Skip to content

Commit

Permalink
Remove SSL_library_init call (#1110)
Browse files Browse the repository at this point in the history
a) It's already called by initializing the Bindings in cryptography
b) I'm pretty sure it's not actually necessary at all
  • Loading branch information
alex authored Mar 20, 2022
1 parent e6fd19a commit 5a30471
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/OpenSSL/SSL.py
Original file line number Diff line number Diff line change
Expand Up @@ -2618,8 +2618,3 @@ def request_ocsp(self):
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()

0 comments on commit 5a30471

Please sign in to comment.