diff options
author | Calvin Bui <3604363+calvinbui@users.noreply.github.com> | 2024-12-28 21:05:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-28 21:05:34 (GMT) |
commit | f9a5a3a3ef34e63dc197156e9a5f57842859ca04 (patch) | |
tree | b823b79dc0e2edaf819b13224d6795c93179ecfb /Doc/library | |
parent | 492b224b991cd9027f1bc6d9988d01e94f764992 (diff) | |
download | cpython-f9a5a3a3ef34e63dc197156e9a5f57842859ca04.zip cpython-f9a5a3a3ef34e63dc197156e9a5f57842859ca04.tar.gz cpython-f9a5a3a3ef34e63dc197156e9a5f57842859ca04.tar.bz2 |
gh-128192: support HTTP sha-256 digest authentication as per RFC-7617 (GH-128193)
support sha-256 digest authentication
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/urllib.request.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index 3c07dc4..b3efde3 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -411,6 +411,9 @@ The following classes are provided: :ref:`http-password-mgr` for information on the interface that must be supported. + .. versionchanged:: 3.14 + Added support for HTTP digest authentication algorithm ``SHA-256``. + .. class:: HTTPDigestAuthHandler(password_mgr=None) |