diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-07 13:55:53 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-07 13:55:53 -0500 |
commit | 425e5b04bb18ce2e563d891f3502365e3b9c071a (patch) | |
tree | 6fe6155fca2d6943f7615ea391e43538d6394c38 /tests/hazmat/backends | |
parent | ddadf40234e97cd5b7e5f7b3a3a03d38900cb291 (diff) | |
parent | e47bafb9b620b557aeb48fce4734a568d6dc0b38 (diff) | |
download | cryptography-425e5b04bb18ce2e563d891f3502365e3b9c071a.tar.gz cryptography-425e5b04bb18ce2e563d891f3502365e3b9c071a.tar.bz2 cryptography-425e5b04bb18ce2e563d891f3502365e3b9c071a.zip |
Merge pull request #1090 from public/numberless-ecdsa-backend
Numberless ECDSA backend
Diffstat (limited to 'tests/hazmat/backends')
-rw-r--r-- | tests/hazmat/backends/test_openssl.py | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index bfcdf14a..aa2122fb 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -19,7 +19,9 @@ import pytest from cryptography import utils from cryptography.exceptions import InternalError, _Reasons -from cryptography.hazmat.backends.openssl.backend import Backend, backend +from cryptography.hazmat.backends.openssl.backend import ( + Backend, backend +) from cryptography.hazmat.primitives import hashes, interfaces from cryptography.hazmat.primitives.asymmetric import dsa, padding, rsa from cryptography.hazmat.primitives.ciphers import Cipher @@ -445,3 +447,22 @@ class TestOpenSSLSerialisationWithOpenSSL(object): key = pretend.stub(type="unsupported") with raises_unsupported_algorithm(None): backend._evp_pkey_to_private_key(key) + + +class TestOpenSSLNoEllipticCurve(object): + def test_elliptic_curve_supported(self, monkeypatch): + monkeypatch.setattr(backend._lib, "Cryptography_HAS_EC", 0) + + assert backend.elliptic_curve_supported(None) is False + + def test_elliptic_curve_signature_algorithm_supported(self, monkeypatch): + monkeypatch.setattr(backend._lib, "Cryptography_HAS_EC", 0) + + assert backend.elliptic_curve_signature_algorithm_supported( + None, None + ) is False + + def test_supported_curves(self, monkeypatch): + monkeypatch.setattr(backend._lib, "Cryptography_HAS_EC", 0) + + assert backend._supported_curves() == [] |