commit | 1bb8b710d444012b7218a08f098a85c4a31ca1bc | [log] [tgz] |
---|---|---|
author | Paul Kehrer <paul.l.kehrer@gmail.com> | Sun Oct 27 17:00:14 2013 -0500 |
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | Mon Oct 28 17:34:37 2013 -0500 |
tree | 91a5e8c1287b56d43ea3daa4f84af318f42994f8 | |
parent | 00dd509f180b6229cfd4b913274a94df3bc05a00 [diff] [blame] |
clean up loader and make docs default to hmac sha256
diff --git a/docs/hazmat/primitives/hmac.rst b/docs/hazmat/primitives/hmac.rst index 993e317..47b8803 100644 --- a/docs/hazmat/primitives/hmac.rst +++ b/docs/hazmat/primitives/hmac.rst
@@ -27,7 +27,7 @@ .. 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() '...'