diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2007-11-06 00:19:03 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2007-11-06 00:19:03 (GMT) |
commit | e1ac4f19301aa0a4d28fc25b91c71c477c37cb21 (patch) | |
tree | f73016435d33c9db6aff9667061b79ff92057718 /Misc | |
parent | 91f9429bc34aa8879fd65fcbcbe81b5e923fc8cb (diff) | |
download | cpython-e1ac4f19301aa0a4d28fc25b91c71c477c37cb21.zip cpython-e1ac4f19301aa0a4d28fc25b91c71c477c37cb21.tar.gz cpython-e1ac4f19301aa0a4d28fc25b91c71c477c37cb21.tar.bz2 |
Fixes Issue 1385: The hmac module now computes the correct hmac when using
hashes with a block size other than 64 bytes (such as sha384 and sha512).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -364,6 +364,9 @@ Library - md5 now raises a DeprecationWarning upon import. +- Issue1385: The hmac module now computes the correct hmac when using hashes + with a block size other than 64 bytes (such as sha384 and sha512). + - mimify now raises a DeprecationWarning upon import. - MimeWriter now raises a DeprecationWarning upon import. |