aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-07-01 19:55:07 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-07-01 20:02:30 -0500
commitb073c8cd31f27af8002174999904556ec283ac7e (patch)
tree59ed587e3463a06bc1395d1ef881fffb769f93e6 /tests/hazmat
parent246fc85526af4d5e48ca827ecb6baa3e8331f77d (diff)
downloadcryptography-b073c8cd31f27af8002174999904556ec283ac7e.tar.gz
cryptography-b073c8cd31f27af8002174999904556ec283ac7e.tar.bz2
cryptography-b073c8cd31f27af8002174999904556ec283ac7e.zip
put the AAD and encrypted byte limit checks in the parent context
Diffstat (limited to 'tests/hazmat')
-rw-r--r--tests/hazmat/primitives/test_aes.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_aes.py b/tests/hazmat/primitives/test_aes.py
index 4d48e8ad..32892678 100644
--- a/tests/hazmat/primitives/test_aes.py
+++ b/tests/hazmat/primitives/test_aes.py
@@ -253,3 +253,33 @@ class TestAESModeGCM(object):
computed_ct = encryptor.update(pt) + encryptor.finalize()
assert computed_ct == ct
assert encryptor.tag == tag
+
+ def test_gcm_ciphertext_limit(self, backend):
+ encryptor = base.Cipher(
+ algorithms.AES(b"\x00" * 16),
+ modes.GCM(b"\x01" * 16),
+ backend=backend
+ ).encryptor()
+ # 16 bytes less than the encryption limit
+ near_limit_bytes = (2 ** 39 - 256 - 128) // 8
+ encryptor._bytes_processed = near_limit_bytes
+ encryptor.update(b"0" * 16)
+ assert (
+ encryptor._bytes_processed == modes.GCM._MAX_ENCRYPTED_BYTES
+ )
+ with pytest.raises(ValueError):
+ encryptor.update(b"0")
+
+ def test_gcm_aad_limit(self, backend):
+ encryptor = base.Cipher(
+ algorithms.AES(b"\x00" * 16),
+ modes.GCM(b"\x01" * 16),
+ backend=backend
+ ).encryptor()
+ # 16 bytes less than the AAD limit
+ near_limit_bytes = (2 ** 64 - 128) // 8
+ encryptor._aad_bytes_processed = near_limit_bytes
+ encryptor.authenticate_additional_data(b"0" * 16)
+ assert encryptor._aad_bytes_processed == modes.GCM._MAX_AAD_BYTES
+ with pytest.raises(ValueError):
+ encryptor.authenticate_additional_data(b"0")