diff options
author | David Reid <dreid@dreid.org> | 2013-11-13 13:49:41 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-11-13 13:49:41 -0800 |
commit | 2cce618311c892aa5a1be2ef899e8ff7a08ae5ef (patch) | |
tree | e664e84cc5e3ee9f70a6f8ae9bb9ccf3d73fae26 /docs | |
parent | c2cddd2b1f0bd935ed53ee49446e268d9bf874e7 (diff) | |
download | cryptography-2cce618311c892aa5a1be2ef899e8ff7a08ae5ef.tar.gz cryptography-2cce618311c892aa5a1be2ef899e8ff7a08ae5ef.tar.bz2 cryptography-2cce618311c892aa5a1be2ef899e8ff7a08ae5ef.zip |
Make HMAC methods raise AlreadyFinalized.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/hmac.rst | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/hmac.rst b/docs/hazmat/primitives/hmac.rst index bd1a4934..cff2dbf1 100644 --- a/docs/hazmat/primitives/hmac.rst +++ b/docs/hazmat/primitives/hmac.rst @@ -36,15 +36,25 @@ message. .. method:: update(msg) :param bytes msg: The bytes to hash and authenticate. + :raises cryptography.exceptions.AlreadyFinalized: See :meth:`finalize` .. method:: copy() - :return: a new instance of this object with a copied internal state. + Copy this :class:`HMAC` instance, usually so that we may call + :meth:`finalize` and get an intermediate digest value while we continue + to call :meth:`update` on the original. + + :return: A new instance of :class:`HMAC` which can be updated + and finalized independently of the original instance. + :raises cryptography.exceptions.AlreadyFinalized: See :meth:`finalize` .. method:: finalize() Finalize the current context and return the message digest as bytes. - Once ``finalize`` is called this object can no longer be used. + Once ``finalize`` is called this object can no longer be used and + :meth:`update`, :meth:`copy`, and :meth:`finalize` will raise + :class:`~cryptography.exceptions.AlreadyFinalized`. :return bytes: The message digest as bytes. + :raises cryptography.exceptions.AlreadyFinalized: |