This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients christian.heimes
Date 2017-03-02.16:26:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1488471997.3.0.538208923582.issue29697@psf.upfronthosting.co.za>
In-reply-to
Content
The bug report was too much of a "memo to me" brain dump. Let me clarify.

For OpenSSL 1.0.2 we can call SSL_CTX_set_ecdh_auto() to enable ECDH curves. For OpenSSL < 1.0.2 it was necessary to configure a curve with SSL_CTX_set_tmp_ecdh(). OpenSSL >= 1.1.0 does neither need ecdh_auto nor tmp_ecdh. 

#if !defined(OPENSSL_NO_ECDH) && !defined(OPENSSL_VERSION_1_1)
...
#endif
History
Date User Action Args
2017-03-02 16:26:37christian.heimessetrecipients: + christian.heimes
2017-03-02 16:26:37christian.heimessetmessageid: <1488471997.3.0.538208923582.issue29697@psf.upfronthosting.co.za>
2017-03-02 16:26:37christian.heimeslinkissue29697 messages
2017-03-02 16:26:37christian.heimescreate