summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-10-11 04:41:00 (GMT)
committerGitHub <noreply@github.com>2018-10-11 04:41:00 (GMT)
commit9b8c2e767643256202bb11456ba8665593b9a500 (patch)
tree92b674df44b5bb6d14583e910cf38f0ead9837bb /Misc
parentf1aa8aed4a8ce9753ffa8713e7d3461663e0624d (diff)
downloadcpython-9b8c2e767643256202bb11456ba8665593b9a500.zip
cpython-9b8c2e767643256202bb11456ba8665593b9a500.tar.gz
cpython-9b8c2e767643256202bb11456ba8665593b9a500.tar.bz2
bpo-34922: Fix integer overflow in the digest() and hexdigest() methods (GH-9751)
for the SHAKE algorithm in the hashlib module.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-10-07-21-18-52.bpo-34922.37IdsA.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-10-07-21-18-52.bpo-34922.37IdsA.rst b/Misc/NEWS.d/next/Library/2018-10-07-21-18-52.bpo-34922.37IdsA.rst
new file mode 100644
index 0000000..6463886
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-10-07-21-18-52.bpo-34922.37IdsA.rst
@@ -0,0 +1,3 @@
+Fixed integer overflow in the :meth:`~hashlib.shake.digest()` and
+:meth:`~hashlib.shake.hexdigest()` methods for the SHAKE algorithm
+in the :mod:`hashlib` module.