summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-11-20 16:35:06 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-11-20 16:35:06 (GMT)
commitc4ab11050d3efa7dd409a96d006435d282d5815e (patch)
tree6ac7ac7dc3936425fdaca8bcab19c39ebeb50612 /Misc/NEWS
parent634919a9fa1fffe3d36b13b4248f99508b5999ed (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1aaf8c1..be6a119 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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').