aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_3des.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-12-24 22:24:31 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-12-24 22:36:28 -0600
commit4f2b1031c3c155b9af3817126b9ac508cbf849a3 (patch)
tree967eca554de3a60a80497cdd6d25fab53642a50d /tests/hazmat/primitives/test_3des.py
parent0cbcfa67fc7c1e13764f4b662fc238a372507af8 (diff)
downloadcryptography-4f2b1031c3c155b9af3817126b9ac508cbf849a3.tar.gz
cryptography-4f2b1031c3c155b9af3817126b9ac508cbf849a3.tar.bz2
cryptography-4f2b1031c3c155b9af3817126b9ac508cbf849a3.zip
add all the markers to the tests
Diffstat (limited to 'tests/hazmat/primitives/test_3des.py')
-rw-r--r--tests/hazmat/primitives/test_3des.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_3des.py b/tests/hazmat/primitives/test_3des.py
index 4e380dee..4c43898c 100644
--- a/tests/hazmat/primitives/test_3des.py
+++ b/tests/hazmat/primitives/test_3des.py
@@ -19,6 +19,7 @@ from __future__ import absolute_import, division, print_function
import binascii
import os
+import pytest
from cryptography.hazmat.primitives.ciphers import algorithms, modes
@@ -26,6 +27,7 @@ from .utils import generate_encrypt_test
from ...utils import load_nist_vectors
+@pytest.mark.cipher
class TestTripleDES_CBC(object):
test_KAT = generate_encrypt_test(
load_nist_vectors,
@@ -64,6 +66,7 @@ class TestTripleDES_CBC(object):
)
+@pytest.mark.cipher
class TestTripleDES_OFB(object):
test_KAT = generate_encrypt_test(
load_nist_vectors,
@@ -102,6 +105,7 @@ class TestTripleDES_OFB(object):
)
+@pytest.mark.cipher
class TestTripleDES_CFB(object):
test_KAT = generate_encrypt_test(
load_nist_vectors,