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 fantix
Recipients asvetlov, fantix, yselivanov
Date 2018-09-30.03:52:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1538279534.68.0.545547206417.issue34847@psf.upfronthosting.co.za>
In-reply-to
Content
This was raised in GH-9460 where the same post handshake authentication (PHA) was added to the ssl module. It should be added to asyncio too. This issue is to discuss the design of PHA API in asyncio, and implement it in Python 3.8.

One approach is to add _SSLProtocolTransport.verify_client_post_handshake(), but an additional new transport mixin type to asyncio/transports.py would be needed (Yury).

Yury also proposed another option to use get_extra_info() API to get something like an "SSLExtra" object with additional APIs.
History
Date User Action Args
2018-09-30 03:52:14fantixsetrecipients: + fantix, asvetlov, yselivanov
2018-09-30 03:52:14fantixsetmessageid: <1538279534.68.0.545547206417.issue34847@psf.upfronthosting.co.za>
2018-09-30 03:52:14fantixlinkissue34847 messages
2018-09-30 03:52:13fantixcreate