diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-24 22:27:30 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-24 22:27:30 -0800 |
commit | 348c80f2eba66b5c1b7f4c3a5ee8fc330895ae4e (patch) | |
tree | fc913b5f7c610c03fb702d9f9b5ed000b2301421 /tests/hazmat/primitives/test_3des.py | |
parent | b7b7f65e42e9831c3f2f3ddd0b5f021d029b73cb (diff) | |
parent | 8d85b058d28d37f1f505292f7cc6311092dd4f39 (diff) | |
download | cryptography-348c80f2eba66b5c1b7f4c3a5ee8fc330895ae4e.tar.gz cryptography-348c80f2eba66b5c1b7f4c3a5ee8fc330895ae4e.tar.bz2 cryptography-348c80f2eba66b5c1b7f4c3a5ee8fc330895ae4e.zip |
Merge pull request #346 from reaperhulk/mark-tests-2
Add Actual Test Marks
Diffstat (limited to 'tests/hazmat/primitives/test_3des.py')
-rw-r--r-- | tests/hazmat/primitives/test_3des.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_3des.py b/tests/hazmat/primitives/test_3des.py index 4e380dee..439ca258 100644 --- a/tests/hazmat/primitives/test_3des.py +++ b/tests/hazmat/primitives/test_3des.py @@ -20,12 +20,15 @@ from __future__ import absolute_import, division, print_function import binascii import os +import pytest + from cryptography.hazmat.primitives.ciphers import algorithms, modes 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 +67,7 @@ class TestTripleDES_CBC(object): ) +@pytest.mark.cipher class TestTripleDES_OFB(object): test_KAT = generate_encrypt_test( load_nist_vectors, @@ -102,6 +106,7 @@ class TestTripleDES_OFB(object): ) +@pytest.mark.cipher class TestTripleDES_CFB(object): test_KAT = generate_encrypt_test( load_nist_vectors, |