This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Remove copy of fast PBKDF2 algorithm
Type: enhancement Stage: resolved
Components: Extension Modules Versions: Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: christian.heimes Nosy List: christian.heimes, gregory.p.smith, miss-islington
Priority: normal Keywords: patch

Created on 2019-09-12 11:13 by christian.heimes, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 16028 merged christian.heimes, 2019-09-12 11:20
PR 16034 merged miss-islington, 2019-09-12 11:46
PR 16051 merged christian.heimes, 2019-09-12 14:12
Messages (3)
msg352111 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2019-09-12 11:13
bpo #18582 added a C implementation of PBKDF2 algorithm. Back then Python still supported OpenSSL versions with a slow version of PBKDF2-HMAC. Nowadays all supported OpenSSL versions contain an optimized version of the password derivation algorithm.
msg352132 - (view) Author: Gregory P. Smith (gregory.p.smith) * (Python committer) Date: 2019-09-12 11:46
New changeset 64117e059b79236c7345bc9afc1cc707162411de by Gregory P. Smith (Christian Heimes) in branch 'master':
bpo-38134: Remove PKBDF2_HMAC_fast from _hashopenssl (GH-16028)
https://github.com/python/cpython/commit/64117e059b79236c7345bc9afc1cc707162411de
msg352136 - (view) Author: miss-islington (miss-islington) Date: 2019-09-12 12:18
New changeset 80e33655a264d75f9a6ffedfc60697c30f92bdfe by Miss Islington (bot) in branch '3.8':
bpo-38134: Remove PKBDF2_HMAC_fast from _hashopenssl (GH-16028)
https://github.com/python/cpython/commit/80e33655a264d75f9a6ffedfc60697c30f92bdfe
History
Date User Action Args
2022-04-11 14:59:20adminsetgithub: 82315
2019-09-12 14:12:11christian.heimessetpull_requests: + pull_request15673
2019-09-12 12:25:32christian.heimessetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-09-12 12:18:43miss-islingtonsetnosy: + miss-islington
messages: + msg352136
2019-09-12 11:46:49miss-islingtonsetpull_requests: + pull_request15656
2019-09-12 11:46:40gregory.p.smithsetnosy: + gregory.p.smith
messages: + msg352132
2019-09-12 11:20:09christian.heimessetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request15651
2019-09-12 11:13:37christian.heimescreate