aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-02-12 12:58:27 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-02-12 17:33:20 -0600
commita10be69304b3c0dc61689487075b6ddd31a2823b (patch)
treed6d2b2cb8c9320a380746138e17630dc97a8335c
parent45efdbc2f775210af4bbc62e3e22ffb5915c796d (diff)
downloadcryptography-a10be69304b3c0dc61689487075b6ddd31a2823b.tar.gz
cryptography-a10be69304b3c0dc61689487075b6ddd31a2823b.tar.bz2
cryptography-a10be69304b3c0dc61689487075b6ddd31a2823b.zip
try to make the old changelog modifications a bit more understandable
-rw-r--r--CHANGELOG.rst20
1 files changed, 15 insertions, 5 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 747ae619..79663ab6 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -168,15 +168,25 @@ Changelog
for :class:`~cryptography.hazmat.primitives.ciphers.algorithms.TripleDES` on
:doc:`/hazmat/backends/commoncrypto` and :doc:`/hazmat/backends/openssl`.
* Deprecated the concrete ``RSAPrivateKey`` class in favor of backend
- specific providers of the ``RSAPrivateKey`` interface.
+ specific providers of the
+ :class:`cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`
+ interface.
* Deprecated the concrete ``RSAPublicKey`` in favor of backend specific
- providers of the ``RSAPublicKey`` interface.
+ providers of the
+ :class:`cryptography.hazmat.primitives.asymmetric.rsa.RSAPublicKey`
+ interface.
* Deprecated the concrete ``DSAPrivateKey`` class in favor of backend
- specific providers of the ``DSAPrivateKey`` interface.
+ specific providers of the
+ :class:`cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey`
+ interface.
* Deprecated the concrete ``DSAPublicKey`` class in favor of backend specific
- providers of the ``DSAPublicKey`` interface.
+ providers of the
+ :class:`cryptography.hazmat.primitives.asymmetric.dsa.DSAPublicKey`
+ interface.
* Deprecated the concrete ``DSAParameters`` class in favor of backend specific
- providers of the ``DSAParameters`` interface.
+ providers of the
+ :class:`cryptography.hazmat.primitives.asymmetric.dsa.DSAParameters`
+ interface.
* Deprecated ``encrypt_rsa``, ``decrypt_rsa``, ``create_rsa_signature_ctx`` and
``create_rsa_verification_ctx`` on
:class:`~cryptography.hazmat.backends.interfaces.RSABackend`.