]> granicus.if.org Git - python/commitdiff
bpo-29697: Don't use OpenSSL <1.0.2 fallback on 1.1+ (GH-398)
authorDonald Stufft <donald@stufft.io>
Thu, 2 Mar 2017 17:32:30 +0000 (12:32 -0500)
committerGitHub <noreply@github.com>
Thu, 2 Mar 2017 17:32:30 +0000 (12:32 -0500)
Modules/_ssl.c

index a79c3a888666ebb42a3edb399243de413764ca05..5f7693c2d886f36363f3913b7c9f0635aafc8ee2 100644 (file)
@@ -2418,12 +2418,12 @@ _ssl__SSLContext_impl(PyTypeObject *type, int proto_version)
 #endif
 
 
-#ifndef OPENSSL_NO_ECDH
+#if !defined(OPENSSL_NO_ECDH) && !defined(OPENSSL_VERSION_1_1)
     /* Allow automatic ECDH curve selection (on OpenSSL 1.0.2+), or use
        prime256v1 by default.  This is Apache mod_ssl's initialization
        policy, so we should be safe. OpenSSL 1.1 has it enabled by default.
      */
-#if defined(SSL_CTX_set_ecdh_auto) && !defined(OPENSSL_VERSION_1_1)
+#if defined(SSL_CTX_set_ecdh_auto)
     SSL_CTX_set_ecdh_auto(self->ctx, 1);
 #else
     {