aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_hmac_vectors.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hazmat/primitives/test_hmac_vectors.py')
-rw-r--r--tests/hazmat/primitives/test_hmac_vectors.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/hazmat/primitives/test_hmac_vectors.py b/tests/hazmat/primitives/test_hmac_vectors.py
index 8704e724..70c929ad 100644
--- a/tests/hazmat/primitives/test_hmac_vectors.py
+++ b/tests/hazmat/primitives/test_hmac_vectors.py
@@ -107,19 +107,3 @@ class TestHMACSHA512(object):
],
hashes.SHA512(),
)
-
-
-@pytest.mark.supported(
- only_if=lambda backend: backend.hmac_supported(hashes.RIPEMD160()),
- skip_message="Does not support RIPEMD160",
-)
-@pytest.mark.requires_backend_interface(interface=HMACBackend)
-class TestHMACRIPEMD160(object):
- test_hmac_ripemd160 = generate_hmac_test(
- load_hash_vectors,
- "HMAC",
- [
- "rfc-2286-ripemd160.txt",
- ],
- hashes.RIPEMD160(),
- )