aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_ed25519.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hazmat/primitives/test_ed25519.py')
-rw-r--r--tests/hazmat/primitives/test_ed25519.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/hazmat/primitives/test_ed25519.py b/tests/hazmat/primitives/test_ed25519.py
index 8a2d3b07..aecc8572 100644
--- a/tests/hazmat/primitives/test_ed25519.py
+++ b/tests/hazmat/primitives/test_ed25519.py
@@ -10,7 +10,6 @@ import os
import pytest
from cryptography.exceptions import InvalidSignature, _Reasons
-from cryptography.hazmat.backends.interfaces import DHBackend
from cryptography.hazmat.primitives import serialization
from cryptography.hazmat.primitives.asymmetric.ed25519 import (
Ed25519PrivateKey, Ed25519PublicKey
@@ -47,7 +46,6 @@ def load_ed25519_vectors(vector_data):
only_if=lambda backend: not backend.ed25519_supported(),
skip_message="Requires OpenSSL without Ed25519 support"
)
-@pytest.mark.requires_backend_interface(interface=DHBackend)
def test_ed25519_unsupported(backend):
with raises_unsupported_algorithm(
_Reasons.UNSUPPORTED_PUBLIC_KEY_ALGORITHM
@@ -69,7 +67,6 @@ def test_ed25519_unsupported(backend):
only_if=lambda backend: backend.ed25519_supported(),
skip_message="Requires OpenSSL with Ed25519 support"
)
-@pytest.mark.requires_backend_interface(interface=DHBackend)
class TestEd25519Signing(object):
@pytest.mark.parametrize(
"vector",