diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2014-05-16 21:24:35 +0100 |
---|---|---|
committer | Alex Stapleton <alexs@prol.etari.at> | 2014-05-23 21:05:47 +0100 |
commit | b987a08652a8866c49325cd5f920b8674d934836 (patch) | |
tree | 6424354b6f200d9aec9f929716e9ed08e0d66412 /docs/hazmat/primitives | |
parent | 20c99038a184928282d5b0598e7c201c0b851851 (diff) | |
download | cryptography-b987a08652a8866c49325cd5f920b8674d934836.tar.gz cryptography-b987a08652a8866c49325cd5f920b8674d934836.tar.bz2 cryptography-b987a08652a8866c49325cd5f920b8674d934836.zip |
Removed signer/verifier from signature algorithm
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r-- | docs/hazmat/primitives/interfaces.rst | 33 |
1 files changed, 0 insertions, 33 deletions
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 |