aboutsummaryrefslogtreecommitdiffstats
path: root/tests/primitives
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-09-10 17:22:11 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-09-10 17:22:11 -0700
commit62ebc7e212a92a13c3836de5d129cb93f40a128d (patch)
tree8d765c996378f4fb6d7627baf1f6baf4ce2238ba /tests/primitives
parent6c7be9c4f45974f907ca75f61b78a47bc3a3c6e1 (diff)
downloadcryptography-62ebc7e212a92a13c3836de5d129cb93f40a128d.tar.gz
cryptography-62ebc7e212a92a13c3836de5d129cb93f40a128d.tar.bz2
cryptography-62ebc7e212a92a13c3836de5d129cb93f40a128d.zip
consistency
Diffstat (limited to 'tests/primitives')
-rw-r--r--tests/primitives/test_nist.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/primitives/test_nist.py b/tests/primitives/test_nist.py
index e736d4d1..bc444191 100644
--- a/tests/primitives/test_nist.py
+++ b/tests/primitives/test_nist.py
@@ -91,7 +91,7 @@ class TestAES_CBC(object):
class TestTripleDES_CBC(object):
@parameterize_encrypt_test(
"3DES", "KAT",
- ["keys", "iv", "plaintext", "ciphertext"],
+ ("keys", "iv", "plaintext", "ciphertext"),
[
"TCBCinvperm.rsp",
"TCBCpermop.rsp",
@@ -111,7 +111,7 @@ class TestTripleDES_CBC(object):
@parameterize_encrypt_test(
"3DES", "KAT",
- ["keys", "iv1", "iv2", "iv3", "plaintext", "ciphertext3"],
+ ("keys", "iv1", "iv2", "iv3", "plaintext", "ciphertext3"),
[
"TCBCIpermop.rsp",
"TCBCIsubtab.rsp",
@@ -130,7 +130,7 @@ class TestTripleDES_CBC(object):
@parameterize_encrypt_test(
"3DES", "KAT",
- ["keys", "iv1", "iv2", "iv3", "plaintext1", "ciphertext3"],
+ ("keys", "iv1", "iv2", "iv3", "plaintext1", "ciphertext3"),
[
"TCBCIinvperm.rsp",
]
@@ -146,7 +146,7 @@ class TestTripleDES_CBC(object):
@parameterize_encrypt_test(
"3DES", "MMT",
- ["key1", "key2", "key3", "iv1", "iv2", "iv3", "plaintext", "ciphertext"],
+ ("key1", "key2", "key3", "iv1", "iv2", "iv3", "plaintext", "ciphertext"),
[
"TCBCIMMT1.rsp",
"TCBCIMMT2.rsp",
@@ -164,7 +164,7 @@ class TestTripleDES_CBC(object):
@parameterize_encrypt_test(
"3DES", "MMT",
- ["key1", "key2", "key3", "iv", "plaintext", "ciphertext"],
+ ("key1", "key2", "key3", "iv", "plaintext", "ciphertext"),
[
"TCBCMMT1.rsp",
"TCBCMMT2.rsp",