aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-09-28 23:46:49 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2017-09-28 11:46:49 -0400
commit62ebb429fe94693e5b94480025f3f3e0556b83b1 (patch)
treed4ecaceab10179e4ead9fc21e20b873dfe1fcbb9 /CHANGELOG.rst
parentba61c2738e5a79480d135c280316e29080a4a777 (diff)
downloadcryptography-62ebb429fe94693e5b94480025f3f3e0556b83b1.tar.gz
cryptography-62ebb429fe94693e5b94480025f3f3e0556b83b1.tar.bz2
cryptography-62ebb429fe94693e5b94480025f3f3e0556b83b1.zip
add ChaCha20 support (#3919)
* add ChaCha20 support * review feedback * 256 divided by 8 is what again? * ...
Diffstat (limited to 'CHANGELOG.rst')
-rw-r--r--CHANGELOG.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 6b4d5387..91e450b8 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -33,6 +33,11 @@ Changelog
:attr:`~cryptography.x509.RFC822Name.value` attribute was deprecated, users
should use :attr:`~cryptography.x509.RFC822Name.bytes_value` to access the
raw value.
+* Added support for
+ :class:`~cryptography.hazmat.primitives.ciphers.algorithms.ChaCha20`. In
+ most cases users should choose
+ :class:`~cryptography.hazmat.primitives.ciphers.aead.ChaCha20Poly1305`
+ rather than using this unauthenticated form.
* Added :meth:`~cryptography.x509.CertificateRevocationList.is_signature_valid`
to :class:`~cryptography.x509.CertificateRevocationList`.
* Support :class:`~cryptography.hazmat.primitives.hashes.BLAKE2b` and