aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/backends/test_commoncrypto.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-10-28 07:48:38 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-10-28 07:48:38 -0700
commit91d0ba1380c27e8a6b62be18e76536000d7006ea (patch)
treea4b22d30963e82636bb4703067d3b46c26add37c /tests/hazmat/backends/test_commoncrypto.py
parent198bb65302f710957a5f67d53389277c5ab0a58c (diff)
parent4365b12f01b3f5f501ca4f86c59999e78980790c (diff)
downloadcryptography-91d0ba1380c27e8a6b62be18e76536000d7006ea.tar.gz
cryptography-91d0ba1380c27e8a6b62be18e76536000d7006ea.tar.bz2
cryptography-91d0ba1380c27e8a6b62be18e76536000d7006ea.zip
Merge branch 'master' into verify-interfaces
Conflicts: tests/hazmat/backends/test_commoncrypto.py tests/hazmat/backends/test_openssl.py tests/hazmat/primitives/test_block.py tests/hazmat/primitives/test_hashes.py tests/hazmat/primitives/test_hmac.py tests/hazmat/primitives/test_pbkdf2hmac.py
Diffstat (limited to 'tests/hazmat/backends/test_commoncrypto.py')
-rw-r--r--tests/hazmat/backends/test_commoncrypto.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/backends/test_commoncrypto.py b/tests/hazmat/backends/test_commoncrypto.py
index b79c02e0..6bb0ede0 100644
--- a/tests/hazmat/backends/test_commoncrypto.py
+++ b/tests/hazmat/backends/test_commoncrypto.py
@@ -30,7 +30,7 @@ from ...utils import raises_unsupported_algorithm
class DummyCipher(object):
name = "dummy-cipher"
block_size = 128
- key_size = 128
+ digest_size = None
@pytest.mark.skipif("commoncrypto" not in