diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-27 20:57:02 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-27 20:57:02 -0400 |
commit | 8a366302cf692d82493d9de6f8332f87684f141c (patch) | |
tree | a39c1d6c64571fe3ccb77a56bebcc20d744f3486 | |
parent | 5a4773856cd5d482009d855780189df87793bab4 (diff) | |
parent | f378e40367663497eb1d039c2c81e80d10f23f93 (diff) | |
download | cryptography-8a366302cf692d82493d9de6f8332f87684f141c.tar.gz cryptography-8a366302cf692d82493d9de6f8332f87684f141c.tar.bz2 cryptography-8a366302cf692d82493d9de6f8332f87684f141c.zip |
Merge pull request #1361 from reaperhulk/more-changelog
more changelog entries from the 0.6 cycle
-rw-r--r-- | CHANGELOG.rst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 06a72aca..5579c413 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -21,6 +21,23 @@ Changelog ``load_elliptic_curve_private_numbers`` and ``load_elliptic_curve_public_numbers`` on :class:`~cryptography.hazmat.backends.interfaces.EllipticCurveBackend`. +* Added + :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKeyWithNumbers` + and + :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublickeyWithNumbers` + support. +* Work around three GCM related bugs in CommonCrypto and OpenSSL. + + * On the CommonCrypto backend adding AAD but not subsequently calling update + would return null tag bytes. + + * One the CommonCrypto backend a call to update without an empty add AAD call + would return null ciphertext bytes. + + * On the OpenSSL backend with certain versions adding AAD only would give + invalid tag bytes. + +* Support loading EC private keys from PEM. 0.5.4 - 2014-08-20 ~~~~~~~~~~~~~~~~~~ |