diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-03-14 13:15:17 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-03-14 13:18:10 -0500 |
commit | 919a5b2af627a18c0298db8a4ac11d8b2b6da7b9 (patch) | |
tree | 25f45d4e19aaf8fd134329920e0063c6773abb4f /tests/hazmat/backends/test_openssl.py | |
parent | 939af10558eccce22e72fafceb7eb4f32d8cea2f (diff) | |
download | cryptography-919a5b2af627a18c0298db8a4ac11d8b2b6da7b9.tar.gz cryptography-919a5b2af627a18c0298db8a4ac11d8b2b6da7b9.tar.bz2 cryptography-919a5b2af627a18c0298db8a4ac11d8b2b6da7b9.zip |
DER serialization of DSA private keys
Diffstat (limited to 'tests/hazmat/backends/test_openssl.py')
-rw-r--r-- | tests/hazmat/backends/test_openssl.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index 410d3d2a..6ce89d65 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -507,19 +507,3 @@ class TestRSAPEMSerialization(object): serialization.PrivateFormat.PKCS8, serialization.BestAvailableEncryption(password) ) - - -@pytest.mark.requires_backend_interface(interface=DSABackend) -class TestDSADERSerialization(object): - def test_unsupported_private_key_encoding(self): - key_bytes = load_vectors_from_file( - os.path.join("asymmetric", "PKCS8", "unenc-dsa-pkcs8.pem"), - lambda pemfile: pemfile.read().encode() - ) - key = serialization.load_pem_private_key(key_bytes, None, backend) - with pytest.raises(TypeError): - key.private_bytes( - serialization.Encoding.DER, - serialization.PrivateFormat.TraditionalOpenSSL, - serialization.NoEncryption() - ) |