diff options
Diffstat (limited to 'tests/hazmat/primitives/test_camellia.py')
-rw-r--r-- | tests/hazmat/primitives/test_camellia.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/hazmat/primitives/test_camellia.py b/tests/hazmat/primitives/test_camellia.py index 4b3a67c5..25bd0ff9 100644 --- a/tests/hazmat/primitives/test_camellia.py +++ b/tests/hazmat/primitives/test_camellia.py @@ -33,7 +33,7 @@ from ...utils import ( skip_message="Does not support Camellia ECB", ) @pytest.mark.cipher -class TestCamellia_ECB(object): +class TestCamelliaModeECB(object): test_ECB = generate_encrypt_test( load_cryptrec_vectors, os.path.join("ciphers", "Camellia"), @@ -54,7 +54,7 @@ class TestCamellia_ECB(object): skip_message="Does not support Camellia CBC", ) @pytest.mark.cipher -class TestCamellia_CBC(object): +class TestCamelliaModeCBC(object): test_CBC = generate_encrypt_test( load_nist_vectors, os.path.join("ciphers", "Camellia"), @@ -71,7 +71,7 @@ class TestCamellia_CBC(object): skip_message="Does not support Camellia OFB", ) @pytest.mark.cipher -class TestCamellia_OFB(object): +class TestCamelliaModeOFB(object): test_OFB = generate_encrypt_test( load_nist_vectors, os.path.join("ciphers", "Camellia"), @@ -88,7 +88,7 @@ class TestCamellia_OFB(object): skip_message="Does not support Camellia CFB", ) @pytest.mark.cipher -class TestCamellia_CFB(object): +class TestCamelliaModeCFB(object): test_CFB = generate_encrypt_test( load_nist_vectors, os.path.join("ciphers", "Camellia"), |