mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
bpo-34670: Add TLS 1.3 post handshake auth (GH-9460)
Add SSLContext.post_handshake_auth and SSLSocket.verify_client_post_handshake for TLS 1.3 post-handshake authentication. Signed-off-by: Christian Heimes <christian@python.org>q https://bugs.python.org/issue34670
This commit is contained in:
parent
4b860fd777
commit
9fb051f032
9 changed files with 370 additions and 16 deletions
|
@ -45,16 +45,16 @@ OPENSSL_OLD_VERSIONS = [
|
|||
]
|
||||
|
||||
OPENSSL_RECENT_VERSIONS = [
|
||||
"1.0.2o",
|
||||
"1.1.0h",
|
||||
# "1.1.1-pre7",
|
||||
"1.0.2p",
|
||||
"1.1.0i",
|
||||
"1.1.1",
|
||||
]
|
||||
|
||||
LIBRESSL_OLD_VERSIONS = [
|
||||
]
|
||||
|
||||
LIBRESSL_RECENT_VERSIONS = [
|
||||
"2.7.3",
|
||||
"2.7.4",
|
||||
]
|
||||
|
||||
# store files in ../multissl
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue