diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-20 08:55:27 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-24 08:25:29 -0600 |
commit | afad62a250b2cd7d3107360e817652a1affc942c (patch) | |
tree | e7d276f6bf46bb5477ad4a172d8156b64557be4e /docs/hazmat | |
parent | 8a8c122ed9d0048ebd3f053505f5f176b5fb156f (diff) | |
download | cryptography-afad62a250b2cd7d3107360e817652a1affc942c.tar.gz cryptography-afad62a250b2cd7d3107360e817652a1affc942c.tar.bz2 cryptography-afad62a250b2cd7d3107360e817652a1affc942c.zip |
add information about why we deprecated the concrete providers
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/rsa.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/asymmetric/rsa.rst b/docs/hazmat/primitives/asymmetric/rsa.rst index f621dbd7..160ff181 100644 --- a/docs/hazmat/primitives/asymmetric/rsa.rst +++ b/docs/hazmat/primitives/asymmetric/rsa.rst @@ -287,6 +287,11 @@ this without having to do the math themselves. Deprecated Concrete Classes ~~~~~~~~~~~~~~~~~~~~~~~~~~~ +These classes were deprecated in version 0.5 in favor of backend specific +providers of the +:class:`~cryptography.hazmat.primitives.interfaces.RSAPrivateKey` and +:class:`~cryptography.hazmat.primitives.interfaces.RSAPublicKey` interfaces. + .. class:: RSAPrivateKey(p, q, private_exponent, dmp1, dmq1, iqmp, public_exponent, modulus) .. versionadded:: 0.2 |