aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-06-26 16:40:05 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-06-27 20:10:30 -0600
commit512ac2280eba827e1b2a377d4c30555c477598c5 (patch)
tree97170eacd26e66e849b4a6657b9ceebe93ef39cb /CHANGELOG.rst
parentecbc00b3d2d3e3daf0d047da4113d7dceb211366 (diff)
downloadcryptography-512ac2280eba827e1b2a377d4c30555c477598c5.tar.gz
cryptography-512ac2280eba827e1b2a377d4c30555c477598c5.tar.bz2
cryptography-512ac2280eba827e1b2a377d4c30555c477598c5.zip
deprecate concrete DSA classes and update DSA docs
Diffstat (limited to 'CHANGELOG.rst')
-rw-r--r--CHANGELOG.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 0f26be45..91742e2e 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -28,6 +28,15 @@ Changelog
* Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey`
in favor of backend specific providers of the
:class:`~cryptography.hazmat.primitives.interfaces.RSAPublicKey` interface.
+* Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`
+ in favor of backend specific providers of the
+ :class:`~cryptography.hazmat.primitives.interfaces.DSAPrivateKey` interface.
+* Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey`
+ in favor of backend specific providers of the
+ :class:`~cryptography.hazmat.primitives.interfaces.DSAPublicKey` interface.
+* Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAParameters`
+ in favor of backend specific providers of the
+ :class:`~cryptography.hazmat.primitives.interfaces.DSAParameters` interface.
* Deprecated ``encrypt_rsa``, ``decrypt_rsa``, ``create_rsa_signature_ctx`` and
``create_rsa_verification_ctx`` on
:class:`~cryptography.hazmat.backends.interfaces.RSABackend`.