aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-31 13:18:31 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-31 13:18:31 -0500
commitb735107f0fe9529cbef070fe50112ac2c9ed9402 (patch)
tree949256dedba6481afbd97c48ebb41be7e52af896 /tests/hazmat
parent20884bfabe140802182e9af01e9446705b0298bc (diff)
downloadcryptography-b735107f0fe9529cbef070fe50112ac2c9ed9402.tar.gz
cryptography-b735107f0fe9529cbef070fe50112ac2c9ed9402.tar.bz2
cryptography-b735107f0fe9529cbef070fe50112ac2c9ed9402.zip
rename camellia tests
Diffstat (limited to 'tests/hazmat')
-rw-r--r--tests/hazmat/primitives/test_camellia.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/hazmat/primitives/test_camellia.py b/tests/hazmat/primitives/test_camellia.py
index ab321a42..46e724bb 100644
--- a/tests/hazmat/primitives/test_camellia.py
+++ b/tests/hazmat/primitives/test_camellia.py
@@ -29,7 +29,7 @@ from ...utils import (
class TestCamelliaECB(object):
- test_NTT = generate_encrypt_test(
+ test_ECB = generate_encrypt_test(
load_cryptrec_vectors_from_file,
os.path.join("ciphers", "Camellia"),
[
@@ -47,7 +47,7 @@ class TestCamelliaECB(object):
class TestCamelliaCBC(object):
- test_OpenSSL = generate_encrypt_test(
+ test_CBC = generate_encrypt_test(
load_openssl_vectors_from_file,
os.path.join("ciphers", "Camellia"),
["camellia-cbc.txt"],
@@ -61,7 +61,7 @@ class TestCamelliaCBC(object):
class TestCamelliaOFB(object):
- test_OpenSSL = generate_encrypt_test(
+ test_OFB = generate_encrypt_test(
load_openssl_vectors_from_file,
os.path.join("ciphers", "Camellia"),
["camellia-ofb.txt"],
@@ -75,7 +75,7 @@ class TestCamelliaOFB(object):
class TestCamelliaCFB(object):
- test_OpenSSL = generate_encrypt_test(
+ test_CFB = generate_encrypt_test(
load_openssl_vectors_from_file,
os.path.join("ciphers", "Camellia"),
["camellia-cfb.txt"],