diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-18 14:57:27 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-18 14:57:27 -0800 |
commit | f8cf48bb4a751451ebb7571e91e1eda3b7345e88 (patch) | |
tree | 85137c3db5c7f895516d5d7d031c30f6c61cb5cd /docs/hazmat/primitives/interfaces.rst | |
parent | 788147d4e3f085362c7151e1b202aa4bb90fce69 (diff) | |
parent | d883cd2f13187a4d1054c543872677b5ca4ffb2c (diff) | |
download | cryptography-f8cf48bb4a751451ebb7571e91e1eda3b7345e88.tar.gz cryptography-f8cf48bb4a751451ebb7571e91e1eda3b7345e88.tar.bz2 cryptography-f8cf48bb4a751451ebb7571e91e1eda3b7345e88.zip |
Merge pull request #634 from reaperhulk/rsa-signing-interfaces
RSA Sign/Verify Interfaces
Diffstat (limited to 'docs/hazmat/primitives/interfaces.rst')
-rw-r--r-- | docs/hazmat/primitives/interfaces.rst | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst index df17e59d..5be3dd95 100644 --- a/docs/hazmat/primitives/interfaces.rst +++ b/docs/hazmat/primitives/interfaces.rst @@ -231,6 +231,39 @@ Asymmetric Interfaces The public exponent. Alias for :attr:`public_exponent`. +.. 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 signature does not + validate. + + +.. class:: AsymmetricPadding + + .. versionadded:: 0.2 + + .. attribute:: name + Hash Algorithms ~~~~~~~~~~~~~~~ |