diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/test_aes.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/hazmat/primitives/test_aes.py b/tests/hazmat/primitives/test_aes.py index a130e054..a6b1e5f2 100644 --- a/tests/hazmat/primitives/test_aes.py +++ b/tests/hazmat/primitives/test_aes.py @@ -318,7 +318,6 @@ class TestAESModeGCM(object): encryptor.finalize() if ( - backend.name == "openssl" and backend._lib.CRYPTOGRAPHY_OPENSSL_LESS_THAN_102 and not backend._lib.CRYPTOGRAPHY_IS_LIBRESSL ): @@ -375,7 +374,6 @@ class TestAESModeGCM(object): tag = encryptor.tag if ( - backend.name == "openssl" and backend._lib.CRYPTOGRAPHY_OPENSSL_LESS_THAN_102 and not backend._lib.CRYPTOGRAPHY_IS_LIBRESSL ): @@ -399,7 +397,6 @@ class TestAESModeGCM(object): decryptor.authenticate_additional_data(aad) if ( - backend.name == "openssl" and backend._lib.CRYPTOGRAPHY_OPENSSL_LESS_THAN_102 and not backend._lib.CRYPTOGRAPHY_IS_LIBRESSL ): |