summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-07-01 00:07:52 -0700
committerNed Deily <nad@python.org>2019-07-01 22:29:17 -0400
commitf97eb883d8a29ee9718147b3631ebd2741273d9b (patch)
tree5f7fe2857cfc2380c298dfb54e1b83a79c9464d4 /Doc
parent5b45fb0a449543fab6e7b606e51b739cb316d3c4 (diff)
downloadcpython-git-f97eb883d8a29ee9718147b3631ebd2741273d9b.tar.gz
[3.7] bpo-37440: Enable TLS 1.3 post-handshake auth in http.client (GH-14448) (GH-14496)
Post-handshake authentication is required for conditional client cert authentication with TLS 1.3. https://bugs.python.org/issue37440 (cherry picked from commit d1bd6e79da1ee56dc1b902d804216ffd267399db) Co-authored-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue37440
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/http.client.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst
index 3408c103e2..3ebeb10aee 100644
--- a/Doc/library/http.client.rst
+++ b/Doc/library/http.client.rst
@@ -94,6 +94,11 @@ The module provides the following classes:
:func:`ssl._create_unverified_context` can be passed to the *context*
parameter.
+ .. versionchanged:: 3.7.4
+ This class now enables TLS 1.3
+ :attr:`ssl.SSLContext.post_handshake_auth` for the default *context* or
+ when *cert_file* is passed with a custom *context*.
+
.. deprecated:: 3.6
*key_file* and *cert_file* are deprecated in favor of *context*.