aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/backends/interfaces.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-09-30 09:15:29 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-09-30 10:06:57 -0500
commit3654d2fb628621b49b8ae269bd23b71e1728e1e0 (patch)
treec7508d9876655c8e3336f695203d31e92b43cea0 /docs/hazmat/backends/interfaces.rst
parentd9f3eda687002fc55b389e15f62a963029fa0fb6 (diff)
downloadcryptography-3654d2fb628621b49b8ae269bd23b71e1728e1e0.tar.gz
cryptography-3654d2fb628621b49b8ae269bd23b71e1728e1e0.tar.bz2
cryptography-3654d2fb628621b49b8ae269bd23b71e1728e1e0.zip
remove deprecated DSA classes/methods and update tests
Diffstat (limited to 'docs/hazmat/backends/interfaces.rst')
-rw-r--r--docs/hazmat/backends/interfaces.rst33
1 files changed, 0 insertions, 33 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst
index 4f4c5680..78354182 100644
--- a/docs/hazmat/backends/interfaces.rst
+++ b/docs/hazmat/backends/interfaces.rst
@@ -341,39 +341,6 @@ A specific ``backend`` may provide one or more of these interfaces.
:raises ValueError: This is raised if the key size is not supported
by the backend.
- .. method:: create_dsa_signature_ctx(private_key, algorithm)
-
- .. deprecated:: 0.5
-
- :param private_key: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.DSAPrivateKey`
- provider.
-
- :param algorithm: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.HashAlgorithm`
- provider
-
- :returns:
- :class:`~cryptography.hazmat.primitives.interfaces.AsymmetricSignatureContext`
-
- .. method:: create_dsa_verification_ctx(public_key, signature, algorithm)
-
- .. deprecated:: 0.5
-
- :param public_key: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.DSAPublicKey`
- provider.
-
- :param bytes signature: The signature to verify. DER encoded as
- specified in :rfc:`6979`.
-
- :param algorithm: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.HashAlgorithm`
- provider.
-
- :returns:
- :class:`~cryptography.hazmat.primitives.interfaces.AsymmetricVerificationContext`
-
.. method:: dsa_hash_supported(algorithm):
:param algorithm: An instance of a