diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-30 12:40:04 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-09-30 12:40:04 -0700 |
commit | 5ea5fa7cbe811d51b69368475f82cf5dc8296e9f (patch) | |
tree | c7508d9876655c8e3336f695203d31e92b43cea0 /docs/hazmat/backends/interfaces.rst | |
parent | d9f3eda687002fc55b389e15f62a963029fa0fb6 (diff) | |
parent | 3654d2fb628621b49b8ae269bd23b71e1728e1e0 (diff) | |
download | cryptography-5ea5fa7cbe811d51b69368475f82cf5dc8296e9f.tar.gz cryptography-5ea5fa7cbe811d51b69368475f82cf5dc8296e9f.tar.bz2 cryptography-5ea5fa7cbe811d51b69368475f82cf5dc8296e9f.zip |
Merge pull request #1376 from reaperhulk/advance-dsa-deprecation-cycle
remove deprecated DSA classes/methods and update tests
Diffstat (limited to 'docs/hazmat/backends/interfaces.rst')
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 33 |
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 |