aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2019-03-19 09:23:54 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2019-03-18 21:23:54 -0400
commitf2c2dfd7ce179b1763a98747282ea2ce019d6c1a (patch)
tree38570dd473bce7562aaf8ae725f10eb2331a76fc /tests
parentc05b44b6d229e66cb16d4697d96918e1d0dccb41 (diff)
downloadcryptography-f2c2dfd7ce179b1763a98747282ea2ce019d6c1a.tar.gz
cryptography-f2c2dfd7ce179b1763a98747282ea2ce019d6c1a.tar.bz2
cryptography-f2c2dfd7ce179b1763a98747282ea2ce019d6c1a.zip
add new branch for unsupported openssh serialization (#4813)
we don't support ed448 openssh keys so we'll use that to test this branch. if we ever do support ed448 keys we can always just call this private method directly to keep coverage.
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/primitives/test_serialization.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_serialization.py b/tests/hazmat/primitives/test_serialization.py
index f7d186e8..6c86927a 100644
--- a/tests/hazmat/primitives/test_serialization.py
+++ b/tests/hazmat/primitives/test_serialization.py
@@ -16,7 +16,9 @@ from cryptography.hazmat.backends.interfaces import (
DERSerializationBackend, DSABackend, EllipticCurveBackend,
PEMSerializationBackend, RSABackend
)
-from cryptography.hazmat.primitives.asymmetric import dsa, ec, ed25519, rsa
+from cryptography.hazmat.primitives.asymmetric import (
+ dsa, ec, ed25519, ed448, rsa
+)
from cryptography.hazmat.primitives.serialization import (
BestAvailableEncryption, Encoding, NoEncryption,
PrivateFormat, PublicFormat,
@@ -1585,3 +1587,10 @@ class TestEd448Serialization(object):
assert public_key.public_bytes(
encoding, PublicFormat.SubjectPublicKeyInfo
) == data
+
+ def test_openssh_serialization_unsupported(self, backend):
+ key = ed448.Ed448PrivateKey.generate().public_key()
+ with pytest.raises(ValueError):
+ key.public_bytes(
+ Encoding.OpenSSH, PublicFormat.OpenSSH
+ )