diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-06-30 10:03:22 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-06-30 10:03:22 -0700 |
commit | a94775925595bf21c849af6eca1a833e51d12e4e (patch) | |
tree | 7c46e24eeff71166b2119829fc668cdef6772296 /tests/hazmat/primitives/test_aes.py | |
parent | cc5224f973de58ddd298d94d8966ccddb7f761a8 (diff) | |
download | cryptography-a94775925595bf21c849af6eca1a833e51d12e4e.tar.gz cryptography-a94775925595bf21c849af6eca1a833e51d12e4e.tar.bz2 cryptography-a94775925595bf21c849af6eca1a833e51d12e4e.zip |
Simplify code and add test
Diffstat (limited to 'tests/hazmat/primitives/test_aes.py')
-rw-r--r-- | tests/hazmat/primitives/test_aes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/test_aes.py b/tests/hazmat/primitives/test_aes.py index 003b3ba0..5bde7d3c 100644 --- a/tests/hazmat/primitives/test_aes.py +++ b/tests/hazmat/primitives/test_aes.py @@ -225,6 +225,6 @@ class TestAESModeGCM(object): "gcmEncryptExtIV192.rsp", "gcmEncryptExtIV256.rsp", ], - lambda key: algorithms.AES(key), - lambda iv, tag, min_tag_length=16: modes.GCM(iv, tag, min_tag_length), + algorithms.AES, + modes.GCM, ) |