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 /Misc | |
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 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Core_and_Builtins/2024-12-23-11-14-07.gh-issue-128192.02mEhD.rst | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -258,6 +258,7 @@ Colm Buckley Erik de Bueger Jan-Hein Bührman Marc Bürg +Calvin Bui Lars Buitinck Artem Bulgakov Dick Bulterman diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-12-23-11-14-07.gh-issue-128192.02mEhD.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-12-23-11-14-07.gh-issue-128192.02mEhD.rst new file mode 100644 index 0000000..b80ab71 --- /dev/null +++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-12-23-11-14-07.gh-issue-128192.02mEhD.rst @@ -0,0 +1,2 @@ +Upgrade HTTP digest authentication algorithm for :mod:`urllib.request` by +supporting SHA-256 digest authentication as specified in :rfc:`7616`. |