aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAyrx <terrycwk1994@gmail.com>2014-06-24 13:43:22 +0800
committerAyrx <terrycwk1994@gmail.com>2014-06-24 13:43:22 +0800
commit020d49d5b5d9ddddd773374178183c4ee11f00ce (patch)
tree6b5e8adf815941bbdc4e776d689655f2ccd650cb /tests
parentd94aacf7588e1064deadd9b460ed9350665ca9d4 (diff)
downloadcryptography-020d49d5b5d9ddddd773374178183c4ee11f00ce.tar.gz
cryptography-020d49d5b5d9ddddd773374178183c4ee11f00ce.tar.bz2
cryptography-020d49d5b5d9ddddd773374178183c4ee11f00ce.zip
Fixed AssertionError on missing curves
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
+ )