diff options
author | Christian Heimes <christian@python.org> | 2019-07-01 06:32:24 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-07-01 06:32:24 (GMT) |
commit | d1bd6e79da1ee56dc1b902d804216ffd267399db (patch) | |
tree | c32216e1fd61cf6668990889fe8dabc5184577b9 /Misc | |
parent | f0f5930ac88482ef896283db5be9b8d508d077db (diff) | |
download | cpython-d1bd6e79da1ee56dc1b902d804216ffd267399db.zip cpython-d1bd6e79da1ee56dc1b902d804216ffd267399db.tar.gz cpython-d1bd6e79da1ee56dc1b902d804216ffd267399db.tar.bz2 |
bpo-37440: Enable TLS 1.3 post-handshake auth in http.client (GH-14448)
Post-handshake authentication is required for conditional client cert authentication with TLS 1.3.
https://bugs.python.org/issue37440
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-06-28-16-40-17.bpo-37440.t3wX-N.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-06-28-16-40-17.bpo-37440.t3wX-N.rst b/Misc/NEWS.d/next/Library/2019-06-28-16-40-17.bpo-37440.t3wX-N.rst new file mode 100644 index 0000000..b336e06 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-06-28-16-40-17.bpo-37440.t3wX-N.rst @@ -0,0 +1,2 @@ +http.client now enables TLS 1.3 post-handshake authentication for default +context or if a cert_file is passed to HTTPSConnection. |