diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-03 15:03:17 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-03 15:03:17 -0800 |
commit | 327742c8e6271e2b6d809e891bd8e518b89994d9 (patch) | |
tree | 324a70bd84ddbc3490f20c0e3413ef1ecc6e3315 /docs/hazmat/primitives | |
parent | eba623f88260a9a076ce3a4a71d1d61755327e05 (diff) | |
parent | f96db83a64bb0ac40d04d27383d7c2defbcec491 (diff) | |
download | cryptography-327742c8e6271e2b6d809e891bd8e518b89994d9.tar.gz cryptography-327742c8e6271e2b6d809e891bd8e518b89994d9.tar.bz2 cryptography-327742c8e6271e2b6d809e891bd8e518b89994d9.zip |
Merge branch 'master' into setup-install-extension
Conflicts:
setup.py
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r-- | docs/hazmat/primitives/hmac.rst | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/hazmat/primitives/hmac.rst b/docs/hazmat/primitives/hmac.rst index b8f94fd2..dc5c54f8 100644 --- a/docs/hazmat/primitives/hmac.rst +++ b/docs/hazmat/primitives/hmac.rst @@ -74,8 +74,11 @@ message. .. method:: verify(signature) - Finalize the current context and securely compare digest to ``signature``. + Finalize the current context and securely compare digest to + ``signature``. - :param bytes signature: The bytes of the HMAC signature recieved. + :param bytes signature: The bytes to compare the current digest + against. :raises cryptography.exceptions.AlreadyFinalized: See :meth:`finalize` - :raises cryptography.exceptions.InvalidSignature: If signature does not match digest + :raises cryptography.exceptions.InvalidSignature: If signature does not + match digest |