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 alex, christian.heimes, dstufft, janssen, njs
Date 2017-12-18.09:59:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513591177.11.0.213398074469.issue32359@psf.upfronthosting.co.za>
In-reply-to
Content
Let's see what's missing:

* alpn_protocols -- OpenSSL doesn't have SSL_CTX_get_alpn_protos(), so we'd have to keep the list around ourselves.
* npn_protocols -- deprecated, I'd rather add a getter
* servername_callback -- simply expose the PyObject* from our struct
* ecdh_curve -- OpenSSL has no getter
* ciphers is covered by https://docs.python.org/3/library/ssl.html#ssl.SSLContext.get_ciphers It doens't return the cipher string but the actual list of enabled ciphers with some extra metadata.
History
Date User Action Args
2017-12-18 09:59:37christian.heimessetrecipients: + christian.heimes, janssen, alex, njs, dstufft
2017-12-18 09:59:37christian.heimessetmessageid: <1513591177.11.0.213398074469.issue32359@psf.upfronthosting.co.za>
2017-12-18 09:59:37christian.heimeslinkissue32359 messages
2017-12-18 09:59:37christian.heimescreate