From 4658ce1c5501d04f11cc91147ac4f8aa884ac26c Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 29 Oct 2013 15:26:50 -0700 Subject: Use current module in the hmac docs, for consistency --- docs/hazmat/primitives/hmac.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'docs/hazmat/primitives') 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. -- cgit v1.2.3