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 vstinner
Recipients geertj, giampaolo.rodola, gvanrossum, pitrou, sbt, vstinner, yselivanov
Date 2015-01-02.01:47:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1420163241.59.0.326009523421.issue22560@psf.upfronthosting.co.za>
In-reply-to
Content
FYI Twisted supports SSL with IOCP using pyOpenSSL 0.10 (released in 2009) or newer. The support is based on twisted.protocols.tls.TLSMemoryBIOFactory.

It looks like the memory BIO implementation is now preferred on all platforms. See the twisted.internet._newtls module:
"""
This module implements memory BIO based TLS support.  It is the preferred
implementation and will be used whenever pyOpenSSL 0.10 or newer is installed
(whenever L{twisted.protocols.tls} is importable).

@since: 11.1
"""
History
Date User Action Args
2015-01-02 01:47:21vstinnersetrecipients: + vstinner, gvanrossum, geertj, pitrou, giampaolo.rodola, sbt, yselivanov
2015-01-02 01:47:21vstinnersetmessageid: <1420163241.59.0.326009523421.issue22560@psf.upfronthosting.co.za>
2015-01-02 01:47:21vstinnerlinkissue22560 messages
2015-01-02 01:47:20vstinnercreate