diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2014-02-15 11:10:57 +0000 |
---|---|---|
committer | Alex Stapleton <alexs@prol.etari.at> | 2014-02-20 19:48:51 +0000 |
commit | 2fb76a3d39ae3ab189bb08336fc4eb42950771a6 (patch) | |
tree | ad5d7edddf6a8ec11652a3e03d9c5d0b7e67590f | |
parent | 6a364d5262905d00ae422d24d91af822b87e899d (diff) | |
download | cryptography-2fb76a3d39ae3ab189bb08336fc4eb42950771a6.tar.gz cryptography-2fb76a3d39ae3ab189bb08336fc4eb42950771a6.tar.bz2 cryptography-2fb76a3d39ae3ab189bb08336fc4eb42950771a6.zip |
OpenSSL "traditional" key format loading...
Backend interface only.
-rw-r--r-- | cryptography/hazmat/backends/interfaces.py | 9 | ||||
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 23 | ||||
-rw-r--r-- | docs/spelling_wordlist.txt | 2 |
3 files changed, 34 insertions, 0 deletions
diff --git a/cryptography/hazmat/backends/interfaces.py b/cryptography/hazmat/backends/interfaces.py index a543ba1f..0a26526b 100644 --- a/cryptography/hazmat/backends/interfaces.py +++ b/cryptography/hazmat/backends/interfaces.py @@ -105,3 +105,12 @@ class RSABackend(six.with_metaclass(abc.ABCMeta)): Returns an object conforming to the AsymmetricVerificationContext interface. """ + + +class OpenSSLSerializationBackend(six.with_metaclass(abc.ABCMeta)): + @abc.abstractmethod + def load_openssl_pem_private_key(data, password, backend): + """ + Load a private key from PEM encoded data, using password if the data + is encrypted. + """ diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst index bd38ed50..af19fbc6 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -248,3 +248,26 @@ A specific ``backend`` may provide one or more of these interfaces. :returns: :class:`~cryptography.hazmat.primitives.interfaces.AsymmetricVerificationContext` + + +.. class:: OpenSSLSerializationBackend + + .. versionadded:: 0.3 + + A backend with methods for working with OpenSSL's "traditional" PKCS #1 + style key serialization. + + .. method:: load_openssl_pem_private_key(data, password) + + :param bytes data: PEM data to deserialize. + + :param bytes password: The password to use if this data is encrypted. + Should be None if the data is not encrypted. + + :return: A new instance of + :class:`~cryptography.hazmat.primitives.serialization.OpenSSLPrivateKey` + + :raises ValueError: If the data could not be deserialized correctly. + + :raises cryptography.exceptions.UnsupportedAlgorithm: If the data is + encrypted with an unsupported algorithm. diff --git a/docs/spelling_wordlist.txt b/docs/spelling_wordlist.txt index 9bc84e50..7200855d 100644 --- a/docs/spelling_wordlist.txt +++ b/docs/spelling_wordlist.txt @@ -13,6 +13,8 @@ cryptographically decrypt decrypted decrypting +deserialize +deserialized Docstrings fernet Fernet |