diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-21 11:21:28 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-21 11:21:28 -0600 |
commit | c85157b5fb468c2def7bbec97927d258bf099c3a (patch) | |
tree | 553d3eda1933afee1e67a0a4510ce219dd45da11 /docs/hazmat | |
parent | 26084d8c15fe631febf5d58691eb2b7f1533460f (diff) | |
parent | 2fb76a3d39ae3ab189bb08336fc4eb42950771a6 (diff) | |
download | cryptography-c85157b5fb468c2def7bbec97927d258bf099c3a.tar.gz cryptography-c85157b5fb468c2def7bbec97927d258bf099c3a.tar.bz2 cryptography-c85157b5fb468c2def7bbec97927d258bf099c3a.zip |
Merge pull request #619 from public/openssl-key-loading-interfaces
Interfaces for loading OpenSSL "traditional" format private keys.
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 23 |
1 files changed, 23 insertions, 0 deletions
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. |