]> granicus.if.org Git - python/commit
Issue #22560: New SSL implementation based on ssl.MemoryBIO
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 13 Jan 2015 23:19:09 +0000 (00:19 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 13 Jan 2015 23:19:09 +0000 (00:19 +0100)
commit231b404cb026649d4b7172e75ac394ef558efe60
tree6d647c68ec4583834213355cc8e21cf67987b2c5
parent9036e49ba1acdd49ed7aa86a228a2657ca72c336
Issue #22560: New SSL implementation based on ssl.MemoryBIO

The new SSL implementation is based on the new ssl.MemoryBIO which is only
available on Python 3.5. On Python 3.4 and older, the legacy SSL implementation
(using SSL_write, SSL_read, etc.) is used. The proactor event loop only
supports the new implementation.

The new asyncio.sslproto module adds _SSLPipe, SSLProtocol and
_SSLProtocolTransport classes. _SSLPipe allows to "wrap" or "unwrap" a socket
(switch between cleartext and SSL/TLS).

Patch written by Antoine Pitrou. sslproto.py is based on gruvi/ssl.py of the
gruvi project written by Geert Jansen.

This change adds SSL support to ProactorEventLoop on Python 3.5 and newer!

It becomes also possible to implement STARTTTLS: switch a cleartext socket to
SSL.
Lib/asyncio/proactor_events.py
Lib/asyncio/selector_events.py
Lib/asyncio/sslproto.py [new file with mode: 0644]
Lib/asyncio/test_utils.py
Lib/test/test_asyncio/test_events.py
Lib/test/test_asyncio/test_selector_events.py