diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-21 14:34:21 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-21 14:34:21 -0800 |
commit | 9b7624e3cd4d19cae38bc8f05eea7b6164445453 (patch) | |
tree | 16b8ecff0fd839b221c596642a118dee9acb05d1 /docs | |
parent | 4447e5a72c6c5d4f3f8fc27711e094540d66ef67 (diff) | |
parent | 447d64fb69e19c0059e3ba18ef3b1317a716a7c4 (diff) | |
download | cryptography-9b7624e3cd4d19cae38bc8f05eea7b6164445453.tar.gz cryptography-9b7624e3cd4d19cae38bc8f05eea7b6164445453.tar.bz2 cryptography-9b7624e3cd4d19cae38bc8f05eea7b6164445453.zip |
Merge pull request #326 from public/unsupported-hmac-hash
Raise UnsupportedAlgorithm when initing HMACs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/hmac.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/hmac.rst b/docs/hazmat/primitives/hmac.rst index 0c0d0220..0547b7d2 100644 --- a/docs/hazmat/primitives/hmac.rst +++ b/docs/hazmat/primitives/hmac.rst @@ -34,6 +34,8 @@ message. >>> h.finalize() '#F\xdaI\x8b"e\xc4\xf1\xbb\x9a\x8fc\xff\xf5\xdex.\xbc\xcd/+\x8a\x86\x1d\x84\'\xc3\xa6\x1d\xd8J' + If the backend doesn't support the requested ``algorithm`` an + :class:`~cryptography.exceptions.UnsupportedAlgorithm` will be raised. :param key: Secret key as ``bytes``. :param algorithm: A |