[issue21304] Backport hashlib.pbkdf2_hmac to Python 2.7

2014-04-18 Thread Alex Gaynor
Changes by Alex Gaynor : -- nosy: +benjamin.peterson, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue21304] Backport hashlib.pbkdf2_hmac to Python 2.7

2014-04-18 Thread Alex Gaynor
Changes by Alex Gaynor : -- nosy: +christian.heimes, dstufft, ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue21304] Backport hashlib.pbkdf2_hmac to Python 2.7

2014-04-18 Thread Alex Gaynor
New submission from Alex Gaynor: Pursuant to PEP466, this is a backport of Python 3.4's hashlib.pbkdf2_hmac. Of note in this patch: * None of the utilities for testing both a python and a C implementation simultaneously were present, so this only tests whichever implementation is available. *