diff options
author | Christian Heimes <christian@cheimes.de> | 2013-11-20 16:35:06 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-11-20 16:35:06 (GMT) |
commit | c4ab11050d3efa7dd409a96d006435d282d5815e (patch) | |
tree | 6ac7ac7dc3936425fdaca8bcab19c39ebeb50612 /Misc/NEWS | |
parent | 634919a9fa1fffe3d36b13b4248f99508b5999ed (diff) | |
download | cpython-c4ab11050d3efa7dd409a96d006435d282d5815e.zip cpython-c4ab11050d3efa7dd409a96d006435d282d5815e.tar.gz cpython-c4ab11050d3efa7dd409a96d006435d282d5815e.tar.bz2 |
Issue #18775: Add name and block_size attribute to HMAC object. They now
provide the same API elements as non-keyed cryptographic hash functions.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -59,6 +59,9 @@ Core and Builtins Library ------- +- Issue #18775: Add name and block_size attribute to HMAC object. They now + provide the same API elements as non-keyed cryptographic hash functions. + - Issue #17276: MD5 as default digestmod for HMAC is deprecated. The HMAC module supports digestmod names, e.g. hmac.HMAC('sha1'). |