diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-09-27 11:26:02 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-09-27 11:26:02 -0500 |
commit | 4c77365d25623e3c64ce6209e65af71eb5dd5ba0 (patch) | |
tree | 4ec8fd6f5e6ab211d88f545fd3f76e516106079d | |
parent | e9022fee01112d00d97ebc499a48f5d71fb83af7 (diff) | |
download | cryptography-4c77365d25623e3c64ce6209e65af71eb5dd5ba0.tar.gz cryptography-4c77365d25623e3c64ce6209e65af71eb5dd5ba0.tar.bz2 cryptography-4c77365d25623e3c64ce6209e65af71eb5dd5ba0.zip |
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 eb9b4f4e..5b1b81bd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -16,6 +16,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. +* Fix three GCM related bugs. + + * 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 ~~~~~~~~~~~~~~~~~~ |