aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/backends/test_multibackend.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-09-09 21:13:39 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-09-09 21:13:39 -0500
commitb8599c085d3e295f460f0117f7df9288a4841d7f (patch)
tree6b6e8d52a3167b4f7540ada271fd3b6dd0d4f70c /tests/hazmat/backends/test_multibackend.py
parent86dd8345a9bd8f826b950b4574072427676f43b3 (diff)
parent4e5d1eeb574b3abfe93f81975984d5d4ef688006 (diff)
downloadcryptography-b8599c085d3e295f460f0117f7df9288a4841d7f.tar.gz
cryptography-b8599c085d3e295f460f0117f7df9288a4841d7f.tar.bz2
cryptography-b8599c085d3e295f460f0117f7df9288a4841d7f.zip
Merge pull request #1326 from alex/pem-serialization-backend
Start moving everything to the new API
Diffstat (limited to 'tests/hazmat/backends/test_multibackend.py')
-rw-r--r--tests/hazmat/backends/test_multibackend.py18
1 files changed, 17 insertions, 1 deletions
diff --git a/tests/hazmat/backends/test_multibackend.py b/tests/hazmat/backends/test_multibackend.py
index 168ed688..655acc44 100644
--- a/tests/hazmat/backends/test_multibackend.py
+++ b/tests/hazmat/backends/test_multibackend.py
@@ -19,7 +19,8 @@ from cryptography.exceptions import (
)
from cryptography.hazmat.backends.interfaces import (
CMACBackend, CipherBackend, DSABackend, EllipticCurveBackend, HMACBackend,
- HashBackend, PBKDF2HMACBackend, PKCS8SerializationBackend, RSABackend,
+ HashBackend, PBKDF2HMACBackend, PEMSerializationBackend,
+ PKCS8SerializationBackend, RSABackend,
TraditionalOpenSSLSerializationBackend
)
from cryptography.hazmat.backends.multibackend import MultiBackend
@@ -211,6 +212,12 @@ class DummyTraditionalOpenSSLSerializationBackend(object):
pass
+@utils.register_interface(PEMSerializationBackend)
+class DummyPEMSerializationBackend(object):
+ def load_pem_private_key(self, data, password):
+ pass
+
+
class TestMultiBackend(object):
def test_ciphers(self):
backend = MultiBackend([
@@ -520,3 +527,12 @@ class TestMultiBackend(object):
backend = MultiBackend([])
with raises_unsupported_algorithm(_Reasons.UNSUPPORTED_SERIALIZATION):
backend.load_traditional_openssl_pem_private_key(b"keydata", None)
+
+ def test_pem_serialization_backend(self):
+ backend = MultiBackend([DummyPEMSerializationBackend()])
+
+ backend.load_pem_private_key(b"keydata", None)
+
+ backend = MultiBackend([])
+ with raises_unsupported_algorithm(_Reasons.UNSUPPORTED_SERIALIZATION):
+ backend.load_pem_private_key(b"keydata", None)