diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-07-18 00:15:55 +0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2018-07-17 12:15:55 -0400 |
commit | c563b576b3bba4a93f8f47272759b29f182dea13 (patch) | |
tree | 60d1fd470a4e2f23b5452b0c2528ebc947c12035 /docs/hazmat/primitives/symmetric-encryption.rst | |
parent | db62ec9967d95e666eb6898766944d9e50532b2d (diff) | |
download | cryptography-c563b576b3bba4a93f8f47272759b29f182dea13.tar.gz cryptography-c563b576b3bba4a93f8f47272759b29f182dea13.tar.bz2 cryptography-c563b576b3bba4a93f8f47272759b29f182dea13.zip |
min_tag_length is an int (#4351)
Diffstat (limited to 'docs/hazmat/primitives/symmetric-encryption.rst')
-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 e74b4d66..c933d042 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -395,7 +395,7 @@ Modes :meth:`~cryptography.hazmat.primitives.ciphers.AEADDecryptionContext.finalize_with_tag`. Otherwise, the tag is mandatory. - :param bytes min_tag_length: The minimum length ``tag`` must be. By default + :param int min_tag_length: The minimum length ``tag`` must be. By default this is ``16``, meaning tag truncation is not allowed. Allowing tag truncation is strongly discouraged for most applications. |