diff options
author | David Reid <dreid@dreid.org> | 2013-10-29 16:06:56 -0700 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-10-29 16:06:56 -0700 |
commit | acfdd61e8e67b8d2df2d4662631e8f8e1c1bc0c0 (patch) | |
tree | 416014b5cc426be0f7a81d095b1a72cd3c5baf31 /docs/hazmat | |
parent | e0f7082d119296d809ac95f8bc1ade53dc9fdf55 (diff) | |
parent | 4658ce1c5501d04f11cc91147ac4f8aa884ac26c (diff) | |
download | cryptography-acfdd61e8e67b8d2df2d4662631e8f8e1c1bc0c0.tar.gz cryptography-acfdd61e8e67b8d2df2d4662631e8f8e1c1bc0c0.tar.bz2 cryptography-acfdd61e8e67b8d2df2d4662631e8f8e1c1bc0c0.zip |
Merge pull request #194 from alex/current-module-hmac
Use current module in the hmac docs, for consistency
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/hmac.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/hmac.rst b/docs/hazmat/primitives/hmac.rst index bfbe3255..e66de36f 100644 --- a/docs/hazmat/primitives/hmac.rst +++ b/docs/hazmat/primitives/hmac.rst @@ -8,6 +8,8 @@ Hash-based Message Authentication Codes ======================================= +.. currentmodule:: cryptography.hazmat.primitives.hmac + .. testsetup:: import binascii @@ -18,7 +20,7 @@ message authentication codes using a cryptographic hash function coupled with a secret key. You can use an HMAC to verify integrity as well as authenticate a message. -.. class:: cryptography.hazmat.primitives.hmac.HMAC(key, msg=None, digestmod=None) +.. class:: HMAC(key, msg=None, digestmod=None) HMAC objects take a ``key``, a hash class derived from :class:`~cryptography.primitives.hashes.BaseHash`, and optional message. |