aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2018-01-06 17:55:27 -0600
committerAlex Gaynor <alex.gaynor@gmail.com>2018-01-06 18:55:27 -0500
commit858a429d88c7e35ecd224a98bfda2c3dd428ae1f (patch)
treea0770fc5150d2b9918a5b99b94c146051dc9ab1e /CHANGELOG.rst
parent323f2ad66befb13ec3b31b5ab99c9448b9a6b067 (diff)
downloadcryptography-858a429d88c7e35ecd224a98bfda2c3dd428ae1f.tar.gz
cryptography-858a429d88c7e35ecd224a98bfda2c3dd428ae1f.tar.bz2
cryptography-858a429d88c7e35ecd224a98bfda2c3dd428ae1f.zip
The HKDF limit is actually 255 * digest_length_in_bytes (#4037)
* The HKDF limit is actually 255 * digest_length_in_bytes Previously we had a bug where we divided digest_size by 8...but HashAlgorithm.digest_size is already in bytes. * test longer output * changelog
Diffstat (limited to 'CHANGELOG.rst')
-rw-r--r--CHANGELOG.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 5a256a25..5e0c0eb5 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -9,6 +9,7 @@ Changelog
.. note:: This version is not yet released and is under active development.
* **BACKWARDS INCOMPATIBLE:** Support for Python 2.6 has been dropped.
+* Resolved a bug in ``HKDF`` that incorrectly constrained output size.
* Added token rotation support to :doc:`Fernet </fernet>` with
:meth:`~cryptography.fernet.MultiFernet.rotate`.