aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-07-07 16:46:16 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-07-07 16:46:16 -0700
commitf0a3de4adb1cc4ae8b8d0892b6ad06c20a529206 (patch)
tree9282f129082f1db7e06769624cebb6fd8ffe9b53
parente4b1e854e0482ae4bc363f7938ad5b214c124d9f (diff)
parent32b1a8e0268ec0585ee71b9d8d6d2413fd978be7 (diff)
downloadcryptography-f0a3de4adb1cc4ae8b8d0892b6ad06c20a529206.tar.gz
cryptography-f0a3de4adb1cc4ae8b8d0892b6ad06c20a529206.tar.bz2
cryptography-f0a3de4adb1cc4ae8b8d0892b6ad06c20a529206.zip
Merge pull request #1222 from reaperhulk/add-pkcs8serialization-multibackend
add PKCS8SerializationBackend support to MultiBackend
-rw-r--r--cryptography/exceptions.py1
-rw-r--r--cryptography/hazmat/backends/multibackend.py12
-rw-r--r--tests/hazmat/backends/test_multibackend.py17
3 files changed, 28 insertions, 2 deletions
diff --git a/cryptography/exceptions.py b/cryptography/exceptions.py
index c64b67f4..c14763f7 100644
--- a/cryptography/exceptions.py
+++ b/cryptography/exceptions.py
@@ -22,6 +22,7 @@ class _Reasons(object):
UNSUPPORTED_MGF = object()
UNSUPPORTED_PUBLIC_KEY_ALGORITHM = object()
UNSUPPORTED_ELLIPTIC_CURVE = object()
+ UNSUPPORTED_SERIALIZATION = object()
class UnsupportedAlgorithm(Exception):
diff --git a/cryptography/hazmat/backends/multibackend.py b/cryptography/hazmat/backends/multibackend.py
index 800c3503..6741f045 100644
--- a/cryptography/hazmat/backends/multibackend.py
+++ b/cryptography/hazmat/backends/multibackend.py
@@ -17,7 +17,7 @@ from cryptography import utils
from cryptography.exceptions import UnsupportedAlgorithm, _Reasons
from cryptography.hazmat.backends.interfaces import (
CMACBackend, CipherBackend, DSABackend, EllipticCurveBackend, HMACBackend,
- HashBackend, PBKDF2HMACBackend, RSABackend
+ HashBackend, PBKDF2HMACBackend, PKCS8SerializationBackend, RSABackend
)
@@ -26,6 +26,7 @@ from cryptography.hazmat.backends.interfaces import (
@utils.register_interface(HashBackend)
@utils.register_interface(HMACBackend)
@utils.register_interface(PBKDF2HMACBackend)
+@utils.register_interface(PKCS8SerializationBackend)
@utils.register_interface(RSABackend)
@utils.register_interface(DSABackend)
@utils.register_interface(EllipticCurveBackend)
@@ -302,3 +303,12 @@ class MultiBackend(object):
"This backend does not support this elliptic curve.",
_Reasons.UNSUPPORTED_ELLIPTIC_CURVE
)
+
+ def load_pkcs8_pem_private_key(self, data, password):
+ for b in self._filtered_backends(PKCS8SerializationBackend):
+ return b.load_pkcs8_pem_private_key(data, password)
+
+ raise UnsupportedAlgorithm(
+ "This backend does not support this key serialization.",
+ _Reasons.UNSUPPORTED_SERIALIZATION
+ )
diff --git a/tests/hazmat/backends/test_multibackend.py b/tests/hazmat/backends/test_multibackend.py
index a68fe560..3be8371f 100644
--- a/tests/hazmat/backends/test_multibackend.py
+++ b/tests/hazmat/backends/test_multibackend.py
@@ -19,7 +19,7 @@ from cryptography.exceptions import (
)
from cryptography.hazmat.backends.interfaces import (
CMACBackend, CipherBackend, DSABackend, EllipticCurveBackend, HMACBackend,
- HashBackend, PBKDF2HMACBackend, RSABackend
+ HashBackend, PBKDF2HMACBackend, PKCS8SerializationBackend, RSABackend
)
from cryptography.hazmat.backends.multibackend import MultiBackend
from cryptography.hazmat.primitives import cmac, hashes, hmac
@@ -192,6 +192,12 @@ class DummyEllipticCurveBackend(object):
raise UnsupportedAlgorithm(_Reasons.UNSUPPORTED_ELLIPTIC_CURVE)
+@utils.register_interface(PKCS8SerializationBackend)
+class DummyPKCS8SerializationBackend(object):
+ def load_pkcs8_pem_private_key(self, data, password):
+ pass
+
+
class TestMultiBackend(object):
def test_ciphers(self):
backend = MultiBackend([
@@ -471,3 +477,12 @@ class TestMultiBackend(object):
ec.SECT163K1()
)
)
+
+ def test_pkcs8_serialization_backend(self):
+ backend = MultiBackend([DummyPKCS8SerializationBackend()])
+
+ backend.load_pkcs8_pem_private_key(b"keydata", None)
+
+ backend = MultiBackend([])
+ with raises_unsupported_algorithm(_Reasons.UNSUPPORTED_SERIALIZATION):
+ backend.load_pkcs8_pem_private_key(b"keydata", None)