[issue18582] PBKDF2 support

2013-11-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 07fa1ed0d551 by Christian Heimes in branch 'default': Issue #18582: fix memory leak in pbkdf2 code http://hg.python.org/cpython/rev/07fa1ed0d551 -- ___ Python tracker

[issue18582] PBKDF2 support

2013-10-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset a15fcb847515 by Christian Heimes in branch 'default': Issue #18582: skip test of _hashlib.pbkdf2_hmac if OpenSSL is not available or too old http://hg.python.org/cpython/rev/a15fcb847515 -- ___ Python tr

[issue18582] PBKDF2 support

2013-10-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 88fac1574049 by Christian Heimes in branch 'default': Issue #18582: HMAC_CTX_copy() is not available on OpenSSL < 1.0 http://hg.python.org/cpython/rev/88fac1574049 -- ___ Python tracker

[issue18582] PBKDF2 support

2013-10-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0a26ef834a49 by Christian Heimes in branch 'default': Issue #18582: provide a faster C implementation of pbkdf2_hmac that works with OpenSSL < 1.0 http://hg.python.org/cpython/rev/0a26ef834a49 -- ___ Pyt

[issue18582] PBKDF2 support

2013-10-12 Thread Christian Heimes
Christian Heimes added the comment: Thanks Antoine! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue18582] PBKDF2 support

2013-10-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5fd56d6d3fce by Christian Heimes in branch 'default': Issue #18582: Add 'pbkdf2_hmac' to the hashlib module. http://hg.python.org/cpython/rev/5fd56d6d3fce -- nosy: +python-dev ___ Python tracker

[issue18582] PBKDF2 support

2013-10-12 Thread Christian Heimes
Changes by Christian Heimes : Removed file: http://bugs.python.org/file32064/pbkdf2_2.patch ___ Python tracker ___ ___ Python-bugs-list mailin

[issue18582] PBKDF2 support

2013-10-12 Thread Christian Heimes
Changes by Christian Heimes : Removed file: http://bugs.python.org/file32070/pbkdf2_3.patch ___ Python tracker ___ ___ Python-bugs-list mailin

[issue18582] PBKDF2 support

2013-10-12 Thread Christian Heimes
Christian Heimes added the comment: Fixed copy n' paste bug in docs. -- Added file: http://bugs.python.org/file32071/pbkdf2_3.patch ___ Python tracker ___ ___

[issue18582] PBKDF2 support

2013-10-12 Thread Christian Heimes
Christian Heimes added the comment: Here is a new patch with tests, documentation and some minor improvements. The last argument is now called dklen. If dklen is omitted or None than dklen is set to digest size of the hash algorithm. -- Added file: http://bugs.python.org/file32070/pbkd

[issue18582] PBKDF2 support

2013-10-12 Thread Christian Heimes
Changes by Christian Heimes : Removed file: http://bugs.python.org/file31067/pbkdf2.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue18582] PBKDF2 support

2013-10-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: The patch looks good at first sight. It still needs docs and tests :) Just one thing: are we sure PKCS5_PBKDF2_HMAC is defined on old OpenSSL versions, or does it need a #ifdef? -- ___ Python tracker

[issue18582] PBKDF2 support

2013-10-12 Thread Christian Heimes
Christian Heimes added the comment: Done -- stage: -> patch review Added file: http://bugs.python.org/file32064/pbkdf2_2.patch ___ Python tracker ___ ___

[issue18582] PBKDF2 support

2013-08-24 Thread Donald Stufft
Changes by Donald Stufft : -- nosy: +dstufft ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue18582] PBKDF2 support

2013-07-28 Thread Antoine Pitrou
Antoine Pitrou added the comment: Please use the "y*" format, not "y#". Also, I would lower-case "pbkdf2", just as we already lower-case "md5", "sha1", etc. -- nosy: +pitrou ___ Python tracker

[issue18582] PBKDF2 support

2013-07-28 Thread Christian Heimes
Changes by Christian Heimes : Removed file: http://bugs.python.org/file31066/pbkdf2.patch ___ Python tracker ___ ___ Python-bugs-list mailing

[issue18582] PBKDF2 support

2013-07-28 Thread Christian Heimes
Changes by Christian Heimes : Added file: http://bugs.python.org/file31067/pbkdf2.patch ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue18582] PBKDF2 support

2013-07-28 Thread Christian Heimes
New submission from Christian Heimes: The patch is a proof of concept for PBKDF2 support for the OpenSSL variant of hashlib. It's a thin wrapper around PKCS5_PBKDF2_HMAC() and is deliberately designed as low level API with bytes and input and output types. High level wrappers can do the conver