From 0e8cdf1023f6e2045de444b1c7e09f40cccf019e Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 13 Dec 2016 21:05:35 -0500 Subject: Drop 1.0.0 (#3312) * delete the 1.0.0 support * drop the version check * drop the AES-CTR stuff * Update the example * openssl truncates for us now * delete unused test * unused imports * Remove a bunch of conditional bindings for NPN * no more 1.0.0 builders * libressl fix * update the docs * remove dead branches * oops * this is a word, damnit * spelling * try removing this * this test is not needed * unused import --- tests/test_x509_crlbuilder.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'tests/test_x509_crlbuilder.py') diff --git a/tests/test_x509_crlbuilder.py b/tests/test_x509_crlbuilder.py index 0d29a3ea..f0306ef0 100644 --- a/tests/test_x509_crlbuilder.py +++ b/tests/test_x509_crlbuilder.py @@ -347,8 +347,6 @@ class TestCertificateRevocationListBuilder(object): @pytest.mark.requires_backend_interface(interface=DSABackend) @pytest.mark.requires_backend_interface(interface=X509Backend) def test_sign_dsa_key(self, backend): - if backend._lib.CRYPTOGRAPHY_OPENSSL_LESS_THAN_101: - pytest.skip("Requires a newer OpenSSL. Must be >= 1.0.1") private_key = DSA_KEY_2048.private_key(backend) invalidity_date = x509.InvalidityDate( datetime.datetime(2002, 1, 1, 0, 0) @@ -393,8 +391,6 @@ class TestCertificateRevocationListBuilder(object): @pytest.mark.requires_backend_interface(interface=EllipticCurveBackend) @pytest.mark.requires_backend_interface(interface=X509Backend) def test_sign_ec_key_unsupported(self, backend): - if backend._lib.CRYPTOGRAPHY_OPENSSL_LESS_THAN_101: - pytest.skip("Requires a newer OpenSSL. Must be >= 1.0.1") _skip_curve_unsupported(backend, ec.SECP256R1()) private_key = ec.generate_private_key(ec.SECP256R1(), backend) invalidity_date = x509.InvalidityDate( -- cgit v1.2.3