diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-13 13:49:43 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-13 13:49:43 -0800 |
commit | 9b70ba37ff66e18b67efd0f7d196becc77763c41 (patch) | |
tree | 90fdd37bbe623af1e903f9866d5c624e9a713431 | |
parent | 34511c697f6f17915b5fe5a58214bb38d779f4a8 (diff) | |
download | cryptography-9b70ba37ff66e18b67efd0f7d196becc77763c41.tar.gz cryptography-9b70ba37ff66e18b67efd0f7d196becc77763c41.tar.bz2 cryptography-9b70ba37ff66e18b67efd0f7d196becc77763c41.zip |
Also mention finalize
-rw-r--r-- | docs/hazmat/primitives/symmetric-encryption.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst index 950ea8b0..4ef15459 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -92,7 +92,7 @@ an "encrypt-then-MAC" formulation as `described by Colin Percival`_. :return bytes: Returns the remainder of the data. Once ``finalize`` is called this object can no longer be used and - :meth:`update` will raise + :meth:`update` and :meth:`finalize` will raise :class:`~cryptography.exceptions.AlreadyFinalized`. Algorithms |