[issue17276] HMAC: deprecate default hash

2014-03-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset c10ec51a2ce4 by R David Murray in branch 'default': whatsnew: hmac *digestmod* accepts strings, and default is deprecated. (#17276) http://hg.python.org/cpython/rev/c10ec51a2ce4 -- ___ Python tracker

[issue17276] HMAC: deprecate default hash

2014-03-08 Thread R. David Murray
R. David Murray added the comment: I don't understand why PendingDeprecationWarning was used here. DeprecationWarnings are silent by default. I'm also not clear on why this is being delayed until 3.6, instead of being changed in 3.5 after a deprecation, given that the default is considered

[issue17276] HMAC: deprecate default hash

2013-11-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 86107e7e6ee5 by Christian Heimes in branch 'default': Issue #17276: MD5 as default digestmod for HMAC is deprecated. The HMAC http://hg.python.org/cpython/rev/86107e7e6ee5 -- nosy: +python-dev ___ Python

[issue17276] HMAC: deprecate default hash

2013-11-20 Thread Christian Heimes
Changes by Christian Heimes li...@cheimes.de: -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17276 ___

[issue17276] HMAC: deprecate default hash

2013-11-17 Thread Christian Heimes
Christian Heimes added the comment: I'll commit the patch later. -- assignee: - christian.heimes ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17276 ___

[issue17276] HMAC: deprecate default hash

2013-11-17 Thread STINNER Victor
STINNER Victor added the comment: Well, if deprecating is not an option, it's probably better to add a red warning explaining why the default choice may not fit all use cases. -- ___ Python tracker rep...@bugs.python.org

[issue17276] HMAC: deprecate default hash

2013-10-22 Thread Christian Heimes
Christian Heimes added the comment: I've changed the deprecation warning to PendingDeprecationWarning. Please review my wording and grammar. -- Added file: http://bugs.python.org/file32299/17276-3.patch ___ Python tracker rep...@bugs.python.org

[issue17276] HMAC: deprecate default hash

2013-10-22 Thread STINNER Victor
STINNER Victor added the comment: I would prefer to directly raise an exception in Python 3.4. Developers will not notice a warning, warning are hidden by default. How many developers run their tests using -Werror? Having to add a parameter to hmac() in applications to port them to Python 3.4

[issue17276] HMAC: deprecate default hash

2013-10-22 Thread Antoine Pitrou
Antoine Pitrou added the comment: Having to add a parameter to hmac() in applications to port them to Python 3.4 should not be so hard. And using MD5 is really a major security issue, don't you think so? Some uses of md5 don't have anything to do with security. I'm -1 on removing the default

[issue17276] HMAC: deprecate default hash

2013-10-22 Thread Christian Heimes
Christian Heimes added the comment: HMAC-MD5 is still fine for legacy support. I wouldn't use it in new program, though -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17276 ___

[issue17276] HMAC: deprecate default hash

2013-10-21 Thread Christian Heimes
Christian Heimes added the comment: GPS, what do you suggest instead? Do you want me to remove the deprecation warning? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17276 ___

[issue17276] HMAC: deprecate default hash

2013-10-21 Thread Gregory P. Smith
Gregory P. Smith added the comment: yes just remove the DeprecationWarning. Document it as deprecated with a release now+0.2 as the earliest it will be removed. (if you want a warning at all, use PendingDeprecationWarning as that one is filtered out by default so it won't bother users of

[issue17276] HMAC: deprecate default hash

2013-08-31 Thread Gregory P. Smith
Gregory P. Smith added the comment: comments added to the review. I don't think a DeprecationWarning should be raised as that'll infuriate users of python programs more than developers who can fix code. -- ___ Python tracker rep...@bugs.python.org

[issue17276] HMAC: deprecate default hash

2013-08-19 Thread Christian Heimes
Christian Heimes added the comment: assertWarns() is much easier than the block I have copied and pasted. Thanks. :) -- Added file: http://bugs.python.org/file31375/17276-2.patch ___ Python tracker rep...@bugs.python.org

[issue17276] HMAC: deprecate default hash

2013-08-18 Thread Christian Heimes
Christian Heimes added the comment: Here is a patch that deprecates MD5 has implicit default hashing algorithm. It also implements digestmod string support. PEP 247 doesn't define the digestmod argument of keyed hashing algorithms. I'm going to define it in PEP 452. -- keywords:

[issue17276] HMAC: deprecate default hash

2013-02-22 Thread Christian Heimes
New submission from Christian Heimes: As of now the hash algorithm for HMAC defaults to MD5. However MD5 is considered broken. HMAC-MD5 is still ok but shall not be used in new code. Applications should slowly migrate away from HMAC-MD5 and use a more modern algorithm like HMAC-SHA256.

[issue17276] HMAC: deprecate default hash

2013-02-22 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: +1. -- nosy: +jcea ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17276 ___ ___ Python-bugs-list mailing list

[issue17276] HMAC: deprecate default hash

2013-02-22 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't know how you intend to make `digestmod` mandatory given the current function signature. Applications should slowly migrate away from HMAC-MD5 and use a more modern algorithm like HMAC-SHA256. Applications don't always choose their cipher. MD5 is

[issue17276] HMAC: deprecate default hash

2013-02-22 Thread Christian Heimes
Christian Heimes added the comment: I don't know how you intend to make `digestmod` mandatory given the current function signature. That's easy: if digestmod is None: raise TypeError(HMAC needs argument 'digestmod') -- ___ Python tracker

[issue17276] HMAC: deprecate default hash

2013-02-22 Thread Christian Heimes
Christian Heimes added the comment: PS: I don't want to deprecate HMAC-MD5. I just want to deprecate that HMAC defaults to HMAC-MD5. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17276