aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@twistedmatrix.com>2013-12-27 16:51:34 -0500
committerJean-Paul Calderone <exarkun@twistedmatrix.com>2013-12-27 16:51:34 -0500
commit03c9ef407d9b58ac5cfc692ac4a92662dfda4421 (patch)
tree78b71d87ce2d21448dfeecd277f4e26a487636e3 /docs
parent2dd6cc89f6822ede162ef402f270493b2263d829 (diff)
parent0ed17826ede036e0c24aa5c061dbb3132e8a330b (diff)
downloadcryptography-03c9ef407d9b58ac5cfc692ac4a92662dfda4421.tar.gz
cryptography-03c9ef407d9b58ac5cfc692ac4a92662dfda4421.tar.bz2
cryptography-03c9ef407d9b58ac5cfc692ac4a92662dfda4421.zip
Merge remote-tracking branch 'origin/master' into some-typedef-fixes
Diffstat (limited to 'docs')
-rw-r--r--docs/exceptions.rst6
-rw-r--r--docs/hazmat/primitives/hmac.rst8
2 files changed, 14 insertions, 0 deletions
diff --git a/docs/exceptions.rst b/docs/exceptions.rst
index 087066b8..1fbd3267 100644
--- a/docs/exceptions.rst
+++ b/docs/exceptions.rst
@@ -8,6 +8,12 @@ Exceptions
This is raised when a context is used after being finalized.
+.. class:: InvalidSignature
+
+ This is raised when the verify method of a hash context does not
+ compare equal.
+
+
.. class:: NotYetFinalized
This is raised when the AEAD tag property is accessed on a context
diff --git a/docs/hazmat/primitives/hmac.rst b/docs/hazmat/primitives/hmac.rst
index 0547b7d2..b8f94fd2 100644
--- a/docs/hazmat/primitives/hmac.rst
+++ b/docs/hazmat/primitives/hmac.rst
@@ -71,3 +71,11 @@ message.
:return bytes: The message digest as bytes.
:raises cryptography.exceptions.AlreadyFinalized:
+
+ .. method:: verify(signature)
+
+ Finalize the current context and securely compare digest to ``signature``.
+
+ :param bytes signature: The bytes of the HMAC signature recieved.
+ :raises cryptography.exceptions.AlreadyFinalized: See :meth:`finalize`
+ :raises cryptography.exceptions.InvalidSignature: If signature does not match digest