From 1bb8b710d444012b7218a08f098a85c4a31ca1bc Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sun, 27 Oct 2013 17:00:14 -0500 Subject: clean up loader and make docs default to hmac sha256 --- docs/hazmat/primitives/hmac.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/hazmat') diff --git a/docs/hazmat/primitives/hmac.rst b/docs/hazmat/primitives/hmac.rst index 993e3179..47b88030 100644 --- a/docs/hazmat/primitives/hmac.rst +++ b/docs/hazmat/primitives/hmac.rst @@ -27,7 +27,7 @@ message. .. doctest:: >>> from cryptography.primitives import hashes, hmac - >>> h = hmac.HMAC(key, hashes.SHA1) + >>> h = hmac.HMAC(key, hashes.SHA256) >>> h.update(b"message to hash") >>> h.hexdigest() '...' -- cgit v1.2.3