]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-94199: Remove hashlib.pbkdf2_hmac() Python implementation (GH-94200)
authorVictor Stinner <vstinner@python.org>
Tue, 28 Jun 2022 09:51:13 +0000 (11:51 +0200)
committerGitHub <noreply@github.com>
Tue, 28 Jun 2022 09:51:13 +0000 (11:51 +0200)
commit71d5299b73c854a7b0e12eb5d0a524579723660b
tree4b3c56052382756ef9c23698d27961ab25b18263
parent5c5fc9da3f91ac09f7f00ac644071cd5efb2eafe
gh-94199: Remove hashlib.pbkdf2_hmac() Python implementation (GH-94200)

Remove the pure Python implementation of hashlib.pbkdf2_hmac(),
deprecated in Python 3.10. Python 3.10 and newer requires OpenSSL
1.1.1 or newer (PEP 644), this OpenSSL version provides a C
implementation of pbkdf2_hmac() which is faster.
Doc/library/hashlib.rst
Doc/whatsnew/3.12.rst
Lib/hashlib.py
Lib/test/test_hashlib.py
Misc/NEWS.d/next/Library/2022-06-24-10-18-59.gh-issue-94199.kYOo8g.rst [new file with mode: 0644]