aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography/hazmat/backends/interfaces.py
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 /cryptography/hazmat/backends/interfaces.py
parentd9f3eda687002fc55b389e15f62a963029fa0fb6 (diff)
downloadcryptography-3654d2fb628621b49b8ae269bd23b71e1728e1e0.tar.gz
cryptography-3654d2fb628621b49b8ae269bd23b71e1728e1e0.tar.bz2
cryptography-3654d2fb628621b49b8ae269bd23b71e1728e1e0.zip
remove deprecated DSA classes/methods and update tests
Diffstat (limited to 'cryptography/hazmat/backends/interfaces.py')
-rw-r--r--cryptography/hazmat/backends/interfaces.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/cryptography/hazmat/backends/interfaces.py b/cryptography/hazmat/backends/interfaces.py
index 00bcc443..69d776ff 100644
--- a/cryptography/hazmat/backends/interfaces.py
+++ b/cryptography/hazmat/backends/interfaces.py
@@ -159,20 +159,6 @@ class DSABackend(object):
"""
@abc.abstractmethod
- def create_dsa_signature_ctx(self, private_key, algorithm):
- """
- Returns an object conforming to the AsymmetricSignatureContext
- interface.
- """
-
- @abc.abstractmethod
- def create_dsa_verification_ctx(self, public_key, signature, algorithm):
- """
- Returns an object conforming to the AsymmetricVerificationContext
- interface.
- """
-
- @abc.abstractmethod
def dsa_hash_supported(self, algorithm):
"""
Return True if the hash algorithm is supported by the backend for DSA.