diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-12-03 22:53:46 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-12-03 22:53:46 -0600 |
commit | f389373faf59e4785c576c0de2aae759347804ab (patch) | |
tree | 93ac4a10a8730cc8f16bf9da788837318bdf7051 /tests | |
parent | ceedfcde29d7654f2aae1fbbcb0bf89d0f30ad0d (diff) | |
download | cryptography-f389373faf59e4785c576c0de2aae759347804ab.tar.gz cryptography-f389373faf59e4785c576c0de2aae759347804ab.tar.bz2 cryptography-f389373faf59e4785c576c0de2aae759347804ab.zip |
add some missing skips
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_x509.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py index 51c48f43..0a1870d5 100644 --- a/tests/test_x509.py +++ b/tests/test_x509.py @@ -3128,6 +3128,7 @@ class TestECDSACertificateRequest(object): ] def test_signature(self, backend): + _skip_curve_unsupported(backend, ec.SECP384R1()) request = _load_cert( os.path.join("x509", "requests", "ec_sha256.pem"), x509.load_pem_x509_csr, @@ -3141,6 +3142,7 @@ class TestECDSACertificateRequest(object): ) def test_tbs_certrequest_bytes(self, backend): + _skip_curve_unsupported(backend, ec.SECP384R1()) request = _load_cert( os.path.join("x509", "requests", "ec_sha256.pem"), x509.load_pem_x509_csr, |