From c8fe4dd5e91b00a5817db283c6198ef7031da825 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Thu, 4 Nov 2021 06:45:09 +0800 Subject: remove SSL_CTX_set_ecdh_auto call (#1059) They are a noop on 1.1.0+ and pyOpenSSL only supports 1.1.0+ now due to cryptography versions --- src/OpenSSL/SSL.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/OpenSSL/SSL.py') diff --git a/src/OpenSSL/SSL.py b/src/OpenSSL/SSL.py index 7fd9ea4..d4173f9 100644 --- a/src/OpenSSL/SSL.py +++ b/src/OpenSSL/SSL.py @@ -724,12 +724,6 @@ class Context(object): _openssl_assert(context != _ffi.NULL) context = _ffi.gc(context, _lib.SSL_CTX_free) - # Set SSL_CTX_set_ecdh_auto so that the ECDH curve will be - # auto-selected. This function was added in 1.0.2 and made a noop in - # 1.1.0+ (where it is set automatically). - res = _lib.SSL_CTX_set_ecdh_auto(context, 1) - _openssl_assert(res == 1) - self._context = context self._passphrase_helper = None self._passphrase_callback = None -- cgit v1.2.1