aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
diff options
context:
space:
mode:
authorAlex Stapleton <alexs@prol.etari.at>2014-05-16 21:24:35 +0100
committerAlex Stapleton <alexs@prol.etari.at>2014-05-23 21:05:47 +0100
commitb987a08652a8866c49325cd5f920b8674d934836 (patch)
tree6424354b6f200d9aec9f929716e9ed08e0d66412 /cryptography
parent20c99038a184928282d5b0598e7c201c0b851851 (diff)
downloadcryptography-b987a08652a8866c49325cd5f920b8674d934836.tar.gz
cryptography-b987a08652a8866c49325cd5f920b8674d934836.tar.bz2
cryptography-b987a08652a8866c49325cd5f920b8674d934836.zip
Removed signer/verifier from signature algorithm
Diffstat (limited to 'cryptography')
-rw-r--r--cryptography/hazmat/primitives/interfaces.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py
index a966d15a..9ba98798 100644
--- a/cryptography/hazmat/primitives/interfaces.py
+++ b/cryptography/hazmat/primitives/interfaces.py
@@ -514,18 +514,6 @@ class EllipticCurveSignatureAlgorithm(object):
The digest algorithm used with this signature.
"""
- @abc.abstractmethod
- def signer(self, private_key, backend):
- """
- Returns an AsymmetricSignatureContext used for signing data.
- """
-
- @abc.abstractmethod
- def verifier(self, signature, public_key, backend):
- """
- Returns an AsymmetricVerificationContext used for signing data.
- """
-
@six.add_metaclass(abc.ABCMeta)
class EllipticCurvePrivateKey(object):