diff options
Diffstat (limited to 'cryptography/hazmat')
-rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 12 |
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): |