diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-02-28 00:23:36 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-02-28 00:23:36 -0500 |
commit | 85e34b3e2741958a105e0e27c0a60c2a12b57675 (patch) | |
tree | 742ab33f78fc291a11b1376dbcc245ca8ef5f502 /src | |
parent | b5a6debdafe0e842273b3eba0f202794d4cad817 (diff) | |
download | cryptography-85e34b3e2741958a105e0e27c0a60c2a12b57675.tar.gz cryptography-85e34b3e2741958a105e0e27c0a60c2a12b57675.tar.bz2 cryptography-85e34b3e2741958a105e0e27c0a60c2a12b57675.zip |
Correct the error string for a message
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/hazmat/primitives/ciphers/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/hazmat/primitives/ciphers/base.py b/src/cryptography/hazmat/primitives/ciphers/base.py index dae93655..496975ae 100644 --- a/src/cryptography/hazmat/primitives/ciphers/base.py +++ b/src/cryptography/hazmat/primitives/ciphers/base.py @@ -185,7 +185,7 @@ class _AEADCipherContext(object): self._aad_bytes_processed += len(data) if self._aad_bytes_processed > self._ctx._mode._MAX_AAD_BYTES: raise ValueError( - "{0} has a maximum AAD byte limit of {0}".format( + "{0} has a maximum AAD byte limit of {1}".format( self._ctx._mode.name, self._ctx._mode._MAX_AAD_BYTES ) ) |