diff options
author | Christian Heimes <christian@cheimes.de> | 2012-06-24 11:48:32 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2012-06-24 11:48:32 (GMT) |
commit | 6cea65555caf2716b4633827715004ab0291a282 (patch) | |
tree | 5ddf9676293edcc5086bd17c4ad432b175888ebf /Misc | |
parent | 605a62ddb1c19978ee194a40a458f072e3242a31 (diff) | |
download | cpython-6cea65555caf2716b4633827715004ab0291a282.zip cpython-6cea65555caf2716b4633827715004ab0291a282.tar.gz cpython-6cea65555caf2716b4633827715004ab0291a282.tar.bz2 |
Issue #15061: Re-implemented hmac.compare_digest() in C
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ What's New in Python 3.3.0 Beta 1? Core and Builtins ----------------- +- Issue #15061: Re-implemented hmac.compare_digest() in C to prevent further + timing analysis and to support all buffer protocol aware objects as well as + ASCII only str instances safely. + - Issue #14815: Use Py_ssize_t instead of long for the object hash, to preserve all 64 bits of hash on Win64. |