aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/primitives/test_ec.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_ec.py b/tests/hazmat/primitives/test_ec.py
index 2690e794..e425ec8d 100644
--- a/tests/hazmat/primitives/test_ec.py
+++ b/tests/hazmat/primitives/test_ec.py
@@ -302,3 +302,13 @@ class TestECDSAVectors(object):
verifier.verify()
else:
verifier.verify()
+
+
+@pytest.mark.elliptic
+def test_generate_elliptic_curve_private_key(backend):
+ with raises_unsupported_algorithm(
+ exceptions._Reasons.UNSUPPORTED_ELLIPTIC_CURVE
+ ):
+ ec.generate_private_key(
+ DummyCurve(), backend
+ )