diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2014-06-20 11:14:11 +0100 |
---|---|---|
committer | Alex Stapleton <alexs@prol.etari.at> | 2014-06-20 11:14:11 +0100 |
commit | 3f2b65cdf1cc3ef037bbca59aa8a9060e411831d (patch) | |
tree | 2d1fa3be4e526659caf939081147034073dcc195 /docs/hazmat/backends/interfaces.rst | |
parent | e3a5e67fef86758d03308695e3a4da1b444cac8c (diff) | |
parent | f2fb02a2c42395d5b3b0f161a127234452a2a976 (diff) | |
download | cryptography-3f2b65cdf1cc3ef037bbca59aa8a9060e411831d.tar.gz cryptography-3f2b65cdf1cc3ef037bbca59aa8a9060e411831d.tar.bz2 cryptography-3f2b65cdf1cc3ef037bbca59aa8a9060e411831d.zip |
Merge pull request #1124 from reaperhulk/rsa-numbers-deprecate
RSA Deprecation
Diffstat (limited to 'docs/hazmat/backends/interfaces.rst')
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst index 1a2603bc..a18a3d57 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -215,6 +215,8 @@ A specific ``backend`` may provide one or more of these interfaces. .. method:: create_rsa_signature_ctx(private_key, padding, algorithm) + .. deprecated:: 0.5 + :param private_key: An instance of an :class:`~cryptography.hazmat.primitives.interfaces.RSAPrivateKey` provider. @@ -232,6 +234,8 @@ A specific ``backend`` may provide one or more of these interfaces. .. method:: create_rsa_verification_ctx(public_key, signature, padding, algorithm) + .. deprecated:: 0.5 + :param public_key: An instance of a :class:`~cryptography.hazmat.primitives.interfaces.RSAPublicKey` provider. @@ -285,6 +289,8 @@ A specific ``backend`` may provide one or more of these interfaces. .. method:: decrypt_rsa(private_key, ciphertext, padding) + .. deprecated:: 0.5 + :param private_key: An instance of an :class:`~cryptography.hazmat.primitives.interfaces.RSAPrivateKey` provider. @@ -305,6 +311,8 @@ A specific ``backend`` may provide one or more of these interfaces. .. method:: encrypt_rsa(public_key, plaintext, padding) + .. deprecated:: 0.5 + :param public_key: An instance of an :class:`~cryptography.hazmat.primitives.interfaces.RSAPublicKey` provider. |