aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-08-09 10:50:30 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-08-09 10:50:30 -0700
commit6c4819dc06fb4db84c3f57ec69748a0fa13ef89f (patch)
tree8536e710d4abc9ddf26ea042320ae052ff831c62
parentde9a3ee2d2bea4b862d783c7dbf12cf15aa763a5 (diff)
downloadcryptography-6c4819dc06fb4db84c3f57ec69748a0fa13ef89f.tar.gz
cryptography-6c4819dc06fb4db84c3f57ec69748a0fa13ef89f.tar.bz2
cryptography-6c4819dc06fb4db84c3f57ec69748a0fa13ef89f.zip
Use a test file with shorter keys so that all lines match our coding standard
-rw-r--r--tests/test_utils.py88
1 files changed, 56 insertions, 32 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py
index 2822eb15..ada524cd 100644
--- a/tests/test_utils.py
+++ b/tests/test_utils.py
@@ -117,77 +117,101 @@ def test_load_nist_vectors_decrypt():
def test_load_nist_vectors_from_file_encrypt():
assert load_nist_vectors_from_file(
- "AES/KAT/CBCGFSbox256.rsp",
+ "AES/KAT/CBCGFSbox128.rsp",
"ENCRYPT",
["key", "iv", "plaintext", "ciphertext"],
) == [
(
- b"0000000000000000000000000000000000000000000000000000000000000000",
b"00000000000000000000000000000000",
- b"014730f80ac625fe84f026c60bfd547d",
- b"5c9d844ed46f9885085e5d6a4f94c7d7",
+ b"00000000000000000000000000000000",
+ b"f34481ec3cc627bacd5dc3fb08f273e6",
+ b"0336763e966d92595a567cc9ce537f5e",
),
(
- b"0000000000000000000000000000000000000000000000000000000000000000",
b"00000000000000000000000000000000",
- b"0b24af36193ce4665f2825d7b4749c98",
- b"a9ff75bd7cf6613d3731c77c3b6d0c04",
+ b"00000000000000000000000000000000",
+ b"9798c4640bad75c7c3227db910174e72",
+ b"a9a1631bf4996954ebc093957b234589",
),
(
- b"0000000000000000000000000000000000000000000000000000000000000000",
b"00000000000000000000000000000000",
- b"761c1fe41a18acf20d241650611d90f1",
- b"623a52fcea5d443e48d9181ab32c7421",
+ b"00000000000000000000000000000000",
+ b"96ab5c2ff612d9dfaae8c31f30c42168",
+ b"ff4f8391a6a40ca5b25d23bedd44a597",
),
(
- b"0000000000000000000000000000000000000000000000000000000000000000",
b"00000000000000000000000000000000",
- b"8a560769d605868ad80d819bdba03771",
- b"38f2c7ae10612415d27ca190d27da8b4",
+ b"00000000000000000000000000000000",
+ b"6a118a874519e64e9963798a503f1d35",
+ b"dc43be40be0e53712f7e2bf5ca707209",
),
(
- b"0000000000000000000000000000000000000000000000000000000000000000",
b"00000000000000000000000000000000",
- b"91fbef2d15a97816060bee1feaa49afe",
- b"1bc704f1bce135ceb810341b216d7abe",
+ b"00000000000000000000000000000000",
+ b"cb9fceec81286ca3e989bd979b0cb284",
+ b"92beedab1895a94faa69b632e5cc47ce",
+ ),
+ (
+ b"00000000000000000000000000000000",
+ b"00000000000000000000000000000000",
+ b"b26aeb1874e47ca8358ff22378f09144",
+ b"459264f4798f6a78bacb89c15ed3d601",
+ ),
+ (
+ b"00000000000000000000000000000000",
+ b"00000000000000000000000000000000",
+ b"58c8e00b2631686d54eab84b91f0aca1",
+ b"08a4e2efec8a8e3312ca7460b9040bbf",
),
]
def test_load_nist_vectors_from_file_decypt():
assert load_nist_vectors_from_file(
- "AES/KAT/CBCGFSbox256.rsp",
+ "AES/KAT/CBCGFSbox128.rsp",
"DECRYPT",
["key", "iv", "ciphertext", "plaintext"],
) == [
(
- b"0000000000000000000000000000000000000000000000000000000000000000",
b"00000000000000000000000000000000",
- b"5c9d844ed46f9885085e5d6a4f94c7d7",
- b"014730f80ac625fe84f026c60bfd547d",
+ b"00000000000000000000000000000000",
+ b"0336763e966d92595a567cc9ce537f5e",
+ b"f34481ec3cc627bacd5dc3fb08f273e6",
),
(
- b"0000000000000000000000000000000000000000000000000000000000000000",
b"00000000000000000000000000000000",
- b"a9ff75bd7cf6613d3731c77c3b6d0c04",
- b"0b24af36193ce4665f2825d7b4749c98",
+ b"00000000000000000000000000000000",
+ b"a9a1631bf4996954ebc093957b234589",
+ b"9798c4640bad75c7c3227db910174e72",
),
(
- b"0000000000000000000000000000000000000000000000000000000000000000",
b"00000000000000000000000000000000",
- b"623a52fcea5d443e48d9181ab32c7421",
- b"761c1fe41a18acf20d241650611d90f1",
+ b"00000000000000000000000000000000",
+ b"ff4f8391a6a40ca5b25d23bedd44a597",
+ b"96ab5c2ff612d9dfaae8c31f30c42168",
),
(
- b"0000000000000000000000000000000000000000000000000000000000000000",
b"00000000000000000000000000000000",
- b"38f2c7ae10612415d27ca190d27da8b4",
- b"8a560769d605868ad80d819bdba03771",
+ b"00000000000000000000000000000000",
+ b"dc43be40be0e53712f7e2bf5ca707209",
+ b"6a118a874519e64e9963798a503f1d35",
),
(
- b"0000000000000000000000000000000000000000000000000000000000000000",
b"00000000000000000000000000000000",
- b"1bc704f1bce135ceb810341b216d7abe",
- b"91fbef2d15a97816060bee1feaa49afe",
+ b"00000000000000000000000000000000",
+ b"92beedab1895a94faa69b632e5cc47ce",
+ b"cb9fceec81286ca3e989bd979b0cb284",
+ ),
+ (
+ b"00000000000000000000000000000000",
+ b"00000000000000000000000000000000",
+ b"459264f4798f6a78bacb89c15ed3d601",
+ b"b26aeb1874e47ca8358ff22378f09144"
+ ),
+ (
+ b"00000000000000000000000000000000",
+ b"00000000000000000000000000000000",
+ b"08a4e2efec8a8e3312ca7460b9040bbf",
+ b"58c8e00b2631686d54eab84b91f0aca1"
),
]