We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f26bf21 commit c8fe4ddCopy full SHA for c8fe4dd
src/OpenSSL/SSL.py
@@ -724,12 +724,6 @@ def __init__(self, method):
724
_openssl_assert(context != _ffi.NULL)
725
context = _ffi.gc(context, _lib.SSL_CTX_free)
726
727
- # Set SSL_CTX_set_ecdh_auto so that the ECDH curve will be
728
- # auto-selected. This function was added in 1.0.2 and made a noop in
729
- # 1.1.0+ (where it is set automatically).
730
- res = _lib.SSL_CTX_set_ecdh_auto(context, 1)
731
- _openssl_assert(res == 1)
732
-
733
self._context = context
734
self._passphrase_helper = None
735
self._passphrase_callback = None
0 commit comments