commit | 71d5299b73c854a7b0e12eb5d0a524579723660b | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@python.org> | Tue Jun 28 11:51:13 2022 +0200 |
committer | GitHub <noreply@github.com> | Tue Jun 28 11:51:13 2022 +0200 |
tree | 4b3c56052382756ef9c23698d27961ab25b18263 | |
parent | 5c5fc9da3f91ac09f7f00ac644071cd5efb2eafe [diff] |
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.