aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2013-08-10 15:43:51 -0400
committerDonald Stufft <donald@stufft.io>2013-08-10 15:44:36 -0400
commitbac187d7e1c7c3bb2f2968f5c36bdcd03d7ce3a1 (patch)
tree8081c434b2179e053f97974b310a085615290699 /tests
parent93b1df6049c5b80c336153a7be0e3485fa2611bc (diff)
downloadcryptography-bac187d7e1c7c3bb2f2968f5c36bdcd03d7ce3a1.tar.gz
cryptography-bac187d7e1c7c3bb2f2968f5c36bdcd03d7ce3a1.tar.bz2
cryptography-bac187d7e1c7c3bb2f2968f5c36bdcd03d7ce3a1.zip
Use an enum for determining BlockCipher operation
Diffstat (limited to 'tests')
-rw-r--r--tests/primitives/test_block.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/primitives/test_block.py b/tests/primitives/test_block.py
index 799e5f03..9059a886 100644
--- a/tests/primitives/test_block.py
+++ b/tests/primitives/test_block.py
@@ -13,9 +13,11 @@
import binascii
+import pretend
import pytest
from cryptography.primitives.block import BlockCipher, ciphers, modes
+from cryptography.primitives.block.base import _Operation
class TestBlockCipher(object):
@@ -43,7 +45,7 @@ class TestBlockCipher(object):
ciphers.AES(binascii.unhexlify(b"0" * 32)),
modes.CBC(binascii.unhexlify(b"0" * 32))
)
- cipher._operation = "decrypt"
+ cipher._operation = _Operation.decrypt
with pytest.raises(ValueError):
cipher.encrypt(b"b" * 16)
@@ -53,7 +55,7 @@ class TestBlockCipher(object):
ciphers.AES(binascii.unhexlify(b"0" * 32)),
modes.CBC(binascii.unhexlify(b"0" * 32))
)
- cipher._operation = "wat"
+ cipher._operation = pretend.stub(name="wat")
with pytest.raises(ValueError):
cipher.encrypt(b"b" * 16)