aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cryptography/hazmat/primitives/interfaces.py12
-rw-r--r--docs/hazmat/primitives/interfaces.rst33
2 files changed, 0 insertions, 45 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):
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst
index 97f89b28..9a957cc2 100644
--- a/docs/hazmat/primitives/interfaces.rst
+++ b/docs/hazmat/primitives/interfaces.rst
@@ -495,39 +495,6 @@ Asymmetric interfaces
The digest algorithm to be used with the signature scheme.
- .. method:: signer(private_key, backend)
-
- Sign data which can be verified later by others using the public key.
-
- :param private_key: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.EllipticCurvePrivateKey`
- provider.
-
- :param backend: A
- :class:`~cryptography.hazmat.backends.interfaces.RSABackend`
- provider.
-
- :returns:
- :class:`~cryptography.hazmat.primitives.interfaces.AsymmetricSignatureContext`
-
- .. method:: verifier(signature, public_key, backend)
-
- Verify data was signed by the private key associated with this public
- key.
-
- :param bytes signature: The signature to verify.
-
- :param public_key: An instance of a
- :class:`~cryptography.hazmat.primitives.interfaces.EllipticCurvePublicKey`
- provider.
-
- :param backend: A
- :class:`~cryptography.hazmat.backends.interfaces.RSABackend`
- provider.
-
- :returns:
- :class:`~cryptography.hazmat.primitives.interfaces.AsymmetricVerificationContext`
-
.. class:: EllipticCurvePrivateKey