diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-28 07:48:38 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-28 07:48:38 -0700 |
commit | 91d0ba1380c27e8a6b62be18e76536000d7006ea (patch) | |
tree | a4b22d30963e82636bb4703067d3b46c26add37c /tests/hazmat/primitives/test_hmac.py | |
parent | 198bb65302f710957a5f67d53389277c5ab0a58c (diff) | |
parent | 4365b12f01b3f5f501ca4f86c59999e78980790c (diff) | |
download | cryptography-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/primitives/test_hmac.py')
-rw-r--r-- | tests/hazmat/primitives/test_hmac.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/test_hmac.py b/tests/hazmat/primitives/test_hmac.py index 01b1cdcb..3553632c 100644 --- a/tests/hazmat/primitives/test_hmac.py +++ b/tests/hazmat/primitives/test_hmac.py @@ -33,8 +33,8 @@ from ...utils import raises_unsupported_algorithm @utils.register_interface(interfaces.HashAlgorithm) class UnsupportedDummyHash(object): name = "unsupported-dummy-hash" - block_size = 128 - digest_size = 128 + block_size = None + digest_size = None @pytest.mark.supported( |