aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_3des.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-03-07 08:41:51 -0430
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-03-07 08:41:51 -0430
commit4fc597d9990bdf17f714ae1a3a3f759e4039e4a9 (patch)
tree6af9a03335ec75dd091b2b300406a5c113389183 /tests/hazmat/primitives/test_3des.py
parenta372db375a34b57fe8efba331b548247a3c42d1a (diff)
downloadcryptography-4fc597d9990bdf17f714ae1a3a3f759e4039e4a9.tar.gz
cryptography-4fc597d9990bdf17f714ae1a3a3f759e4039e4a9.tar.bz2
cryptography-4fc597d9990bdf17f714ae1a3a3f759e4039e4a9.zip
pass bytes to modes/algorithms like we should
Diffstat (limited to 'tests/hazmat/primitives/test_3des.py')
-rw-r--r--tests/hazmat/primitives/test_3des.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/hazmat/primitives/test_3des.py b/tests/hazmat/primitives/test_3des.py
index 0197353e..586afb47 100644
--- a/tests/hazmat/primitives/test_3des.py
+++ b/tests/hazmat/primitives/test_3des.py
@@ -22,7 +22,7 @@ from ...utils import load_nist_vectors
@pytest.mark.supported(
only_if=lambda backend: backend.cipher_supported(
- algorithms.TripleDES("\x00" * 8), modes.CBC("\x00" * 8)
+ algorithms.TripleDES(b"\x00" * 8), modes.CBC(b"\x00" * 8)
),
skip_message="Does not support TripleDES CBC",
)
@@ -59,7 +59,7 @@ class TestTripleDESModeCBC(object):
@pytest.mark.supported(
only_if=lambda backend: backend.cipher_supported(
- algorithms.TripleDES("\x00" * 8), modes.OFB("\x00" * 8)
+ algorithms.TripleDES(b"\x00" * 8), modes.OFB(b"\x00" * 8)
),
skip_message="Does not support TripleDES OFB",
)
@@ -96,7 +96,7 @@ class TestTripleDESModeOFB(object):
@pytest.mark.supported(
only_if=lambda backend: backend.cipher_supported(
- algorithms.TripleDES("\x00" * 8), modes.CFB("\x00" * 8)
+ algorithms.TripleDES(b"\x00" * 8), modes.CFB(b"\x00" * 8)
),
skip_message="Does not support TripleDES CFB",
)
@@ -133,7 +133,7 @@ class TestTripleDESModeCFB(object):
@pytest.mark.supported(
only_if=lambda backend: backend.cipher_supported(
- algorithms.TripleDES("\x00" * 8), modes.CFB8("\x00" * 8)
+ algorithms.TripleDES(b"\x00" * 8), modes.CFB8(b"\x00" * 8)
),
skip_message="Does not support TripleDES CFB8",
)