aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-01-08 20:32:29 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-01-08 20:32:29 -0800
commitfc2fd05fab7a73c71be22d6e24a696ca455ea2a5 (patch)
tree6ea60db180cbebb0e84808b0bed6097c6fdcacd7 /docs/hazmat
parent607e423d54f5d4465cde802634d6121735952be6 (diff)
parent288bae7ede180812c1229fc82eda76e47aa73f58 (diff)
downloadcryptography-fc2fd05fab7a73c71be22d6e24a696ca455ea2a5.tar.gz
cryptography-fc2fd05fab7a73c71be22d6e24a696ca455ea2a5.tar.bz2
cryptography-fc2fd05fab7a73c71be22d6e24a696ca455ea2a5.zip
Merge pull request #439 from reaperhulk/hmac-verify-text
HMAC verify text update
Diffstat (limited to 'docs/hazmat')
-rw-r--r--docs/hazmat/primitives/hmac.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/hazmat/primitives/hmac.rst b/docs/hazmat/primitives/hmac.rst
index f4f5daa1..a21799be 100644
--- a/docs/hazmat/primitives/hmac.rst
+++ b/docs/hazmat/primitives/hmac.rst
@@ -37,9 +37,8 @@ message.
If the backend doesn't support the requested ``algorithm`` an
:class:`~cryptography.exceptions.UnsupportedAlgorithm` will be raised.
- If you've been given a signature and need to check that it's correct, this
- can be done with the :meth:`verify` method, you'll get an exception if the
- signature is wrong:
+ To check that a given signature is correct use the :meth:`verify` method.
+ You will receive an exception if the signature is wrong:
.. code-block:: pycon