aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2019-05-04 13:34:29 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2019-05-04 13:34:29 -0400
commit81233de59df126c8b21f359661f3204924c9d67b (patch)
treee4c8a0a801ecf2996aaee186eb5c12504208641c /CHANGELOG.rst
parentb5e34e499042a0dce3d60da89169b006fb5cae26 (diff)
downloadcryptography-81233de59df126c8b21f359661f3204924c9d67b.tar.gz
cryptography-81233de59df126c8b21f359661f3204924c9d67b.tar.bz2
cryptography-81233de59df126c8b21f359661f3204924c9d67b.zip
fix from_issuer_subject_key_identifier to take the right type (#4864)
* fix from_issuer_subject_key_identifier to take the right type deprecate passing the old Extension wrapper object * don't use a try:except: * hilarious contortions to satisfy doc8
Diffstat (limited to 'CHANGELOG.rst')
-rw-r--r--CHANGELOG.rst9
1 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index d6b3ac28..df1a1fea 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -16,7 +16,14 @@ Changelog
when using OpenSSL 1.1.1 or newer.
* Support serialization with ``Encoding.OpenSSH`` and ``PublicFormat.OpenSSH``
in
- :meth:`Ed25519PublicKey.public_bytes <cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey.public_bytes>`.
+ :meth:`Ed25519PublicKey.public_bytes
+ <cryptography.hazmat.primitives.asymmetric.ed25519.Ed25519PublicKey.public_bytes>`
+ .
+* Correctly allow passing a ``SubjectKeyIdentifier`` to
+ :meth:`~cryptography.x509.AuthorityKeyIdentifier.from_issuer_subject_key_identifier`
+ and deprecate passing an ``Extension`` object. The documentation always
+ required ``SubjectKeyIdentifier`` but the implementation previously
+ required an ``Extension``.
.. _v2-6-1: