summaryrefslogtreecommitdiff
path: root/CHANGELOG.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-06-19 10:16:42 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-06-19 10:16:42 -0600
commitf2fb02a2c42395d5b3b0f161a127234452a2a976 (patch)
tree6efe74db2c29574238219f96df72c8d65e135381 /CHANGELOG.rst
parent12a4e0fd70476a3b54193a12aa760b100baaa019 (diff)
downloadcryptography-f2fb02a2c42395d5b3b0f161a127234452a2a976.tar.gz
deprecate old RSA classes and methods
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 7a6545468..0f26be45b 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -22,6 +22,15 @@ Changelog
* Added :class:`~cryptography.hazmat.primitives.ciphers.modes.ECB` support
for :class:`~cryptography.hazmat.primitives.ciphers.algorithms.TripleDES` on
:doc:`/hazmat/backends/commoncrypto` and :doc:`/hazmat/backends/openssl`.
+* Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`
+ in favor of backend specific providers of the
+ :class:`~cryptography.hazmat.primitives.interfaces.RSAPrivateKey` interface.
+* Deprecated :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey`
+ in favor of backend specific providers of the
+ :class:`~cryptography.hazmat.primitives.interfaces.RSAPublicKey` interface.
+* Deprecated ``encrypt_rsa``, ``decrypt_rsa``, ``create_rsa_signature_ctx`` and
+ ``create_rsa_verification_ctx`` on
+ :class:`~cryptography.hazmat.backends.interfaces.RSABackend`.
0.4 - 2014-05-03
~~~~~~~~~~~~~~~~