aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-05-23 23:38:59 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2017-05-23 23:38:59 -0700
commit416f526a3d809d330b4a990bdf4a742384bde8f8 (patch)
tree93db904bb4dc50dd572d2cb4c54c0dee9bd12eb6 /CHANGELOG.rst
parent0517d1ae49061f486e2e4d279d70b6b61361de2f (diff)
downloadcryptography-416f526a3d809d330b4a990bdf4a742384bde8f8.tar.gz
cryptography-416f526a3d809d330b4a990bdf4a742384bde8f8.tar.bz2
cryptography-416f526a3d809d330b4a990bdf4a742384bde8f8.zip
add convenience methods for key_size on EC{Public,Private}Key (#3587)
Diffstat (limited to 'CHANGELOG.rst')
-rw-r--r--CHANGELOG.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 0e7619e5..81aca4e5 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -21,6 +21,12 @@ Changelog
:meth:`~cryptography.hazmat.primitives.ciphers.AEADDecryptionContext.finalize_with_tag`.
* Fixed an issue preventing ``cryptography`` from compiling against
LibreSSL 2.5.x.
+* Added
+ :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicKey.key_size`
+ and
+ :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey.key_size`
+ as convenience methods for determining the bit size of a secret scalar for
+ the curve.
* Accessing an unrecognized extension marked critical on an X.509 object will
no longer raise an ``UnsupportedExtension`` exception, instead an
:class:`~cryptography.x509.UnrecognizedExtension` object will be returned.