From b987a08652a8866c49325cd5f920b8674d934836 Mon Sep 17 00:00:00 2001 From: Alex Stapleton Date: Fri, 16 May 2014 21:24:35 +0100 Subject: Removed signer/verifier from signature algorithm --- docs/hazmat/primitives/interfaces.rst | 33 --------------------------------- 1 file changed, 33 deletions(-) (limited to 'docs/hazmat') 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 -- cgit v1.2.3