[issue26390] hashlib's pbkdf2_hmac documentation "rounds" does not match source

2016-02-19 Thread Daan Bakker
Daan Bakker added the comment: Good catch. I updated that reference now from rounds to iterations as well. -- Added file: http://bugs.python.org/file41969/pbkdf2_5.patch ___ Python tracker <http://bugs.python.org/issue26

[issue26390] hashlib's pbkdf2_hmac documentation "rounds" does not match source

2016-02-18 Thread Daan Bakker
New submission from Daan Bakker: The documentation for pbkdf2_hmac at https://docs.python.org/3/library/hashlib.html uses the "rounds" keyword: hashlib.pbkdf2_hmac(name, password, salt, rounds, dklen=None) However, the actual source code uses "iterations". No-one has