[issue38134] Remove copy of fast PBKDF2 algorithm

2019-09-12 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +15673 pull_request: https://github.com/python/cpython/pull/16051 ___ Python tracker ___

[issue38134] Remove copy of fast PBKDF2 algorithm

2019-09-12 Thread Christian Heimes
Change by Christian Heimes : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue38134] Remove copy of fast PBKDF2 algorithm

2019-09-12 Thread miss-islington
miss-islington added the comment: 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 --

[issue38134] Remove copy of fast PBKDF2 algorithm

2019-09-12 Thread miss-islington
Change by miss-islington : -- pull_requests: +15656 pull_request: https://github.com/python/cpython/pull/16034 ___ Python tracker ___

[issue38134] Remove copy of fast PBKDF2 algorithm

2019-09-12 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 64117e059b79236c7345bc9afc1cc707162411de by Gregory P. Smith (Christian Heimes) in branch 'master': bpo-38134: Remove PKBDF2_HMAC_fast from _hashopenssl (GH-16028)

[issue38134] Remove copy of fast PBKDF2 algorithm

2019-09-12 Thread Christian Heimes
Change by Christian Heimes : -- keywords: +patch pull_requests: +15651 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/16028 ___ Python tracker

[issue38134] Remove copy of fast PBKDF2 algorithm

2019-09-12 Thread Christian Heimes
New submission from Christian Heimes : 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.