diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2014-05-17 15:16:51 +0100 |
---|---|---|
committer | Alex Stapleton <alexs@prol.etari.at> | 2014-05-17 15:16:51 +0100 |
commit | a741aad3bd7d6347b9816025cb4905558c2c71c6 (patch) | |
tree | 6fdc0df70cd1bbecd56049208899111a8edcd202 /docs/hazmat/primitives/mac/hmac.rst | |
parent | 60437c370d079d55db2c284e2f241ecde3b61cbf (diff) | |
parent | 00eff9ca7fece942670429824cb77dd532190c96 (diff) | |
download | cryptography-a741aad3bd7d6347b9816025cb4905558c2c71c6.tar.gz cryptography-a741aad3bd7d6347b9816025cb4905558c2c71c6.tar.bz2 cryptography-a741aad3bd7d6347b9816025cb4905558c2c71c6.zip |
Merge pull request #1048 from Ayrx/change-unicode-check
Fixed TypeError and added documentation
Diffstat (limited to 'docs/hazmat/primitives/mac/hmac.rst')
-rw-r--r-- | docs/hazmat/primitives/mac/hmac.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/mac/hmac.rst b/docs/hazmat/primitives/mac/hmac.rst index e20a4034..d56927b9 100644 --- a/docs/hazmat/primitives/mac/hmac.rst +++ b/docs/hazmat/primitives/mac/hmac.rst @@ -69,6 +69,7 @@ of a message. :param bytes msg: The bytes to hash and authenticate. :raises cryptography.exceptions.AlreadyFinalized: See :meth:`finalize` + :raises TypeError: This exception is raised if ``msg`` is not ``bytes``. .. method:: copy() @@ -90,6 +91,8 @@ of a message. :raises cryptography.exceptions.AlreadyFinalized: See :meth:`finalize` :raises cryptography.exceptions.InvalidSignature: If signature does not match digest + :raises TypeError: This exception is raised if ``signature`` is not + ``bytes``. .. method:: finalize() |