From 0d6203f25ad15d5e369e23c8a30ba9d2e42eaf1e Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 16 Feb 2015 13:17:14 -0600 Subject: move asymmetric signature/verification interfaces --- docs/hazmat/primitives/asymmetric/index.rst | 32 +++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'docs/hazmat/primitives/asymmetric/index.rst') diff --git a/docs/hazmat/primitives/asymmetric/index.rst b/docs/hazmat/primitives/asymmetric/index.rst index 43761fde..203f589a 100644 --- a/docs/hazmat/primitives/asymmetric/index.rst +++ b/docs/hazmat/primitives/asymmetric/index.rst @@ -32,4 +32,36 @@ and Elliptic Curve. serialization utils +.. module:: cryptography.hazmat.primitives.asymmetric + +Signature Interfaces +~~~~~~~~~~~~~~~~~~~~ + +.. class:: AsymmetricSignatureContext + + .. versionadded:: 0.2 + + .. method:: update(data) + + :param bytes data: The data you want to sign. + + .. method:: finalize() + + :return bytes signature: The signature. + + +.. class:: AsymmetricVerificationContext + + .. versionadded:: 0.2 + + .. method:: update(data) + + :param bytes data: The data you wish to verify using the signature. + + .. method:: verify() + + :raises cryptography.exceptions.InvalidSignature: If the signature does + not validate. + + .. _`proof of identity`: https://en.wikipedia.org/wiki/Public-key_infrastructure -- cgit v1.2.3 From 25bbc150752de98b459f061ce4b90628f2108dbd Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 16 Feb 2015 18:24:16 -0600 Subject: move asymmetric signature interface docs --- docs/hazmat/primitives/asymmetric/index.rst | 32 +---------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) (limited to 'docs/hazmat/primitives/asymmetric/index.rst') diff --git a/docs/hazmat/primitives/asymmetric/index.rst b/docs/hazmat/primitives/asymmetric/index.rst index 203f589a..59f00c5d 100644 --- a/docs/hazmat/primitives/asymmetric/index.rst +++ b/docs/hazmat/primitives/asymmetric/index.rst @@ -30,38 +30,8 @@ and Elliptic Curve. ec rsa serialization + interfaces utils -.. module:: cryptography.hazmat.primitives.asymmetric - -Signature Interfaces -~~~~~~~~~~~~~~~~~~~~ - -.. class:: AsymmetricSignatureContext - - .. versionadded:: 0.2 - - .. method:: update(data) - - :param bytes data: The data you want to sign. - - .. method:: finalize() - - :return bytes signature: The signature. - - -.. class:: AsymmetricVerificationContext - - .. versionadded:: 0.2 - - .. method:: update(data) - - :param bytes data: The data you wish to verify using the signature. - - .. method:: verify() - - :raises cryptography.exceptions.InvalidSignature: If the signature does - not validate. - .. _`proof of identity`: https://en.wikipedia.org/wiki/Public-key_infrastructure -- cgit v1.2.3