diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-03-29 09:32:13 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-03-29 09:32:13 -0400 |
commit | 43f49de4fb7e878e8ff7bb5c49cef8bbddb65e3f (patch) | |
tree | 7e9a78b048ff33ff1712be9aec198da8955eb99a /docs/hazmat | |
parent | 554104d69e00d7afbea3c69f8e956e84bda5f1af (diff) | |
parent | b759e29dfeb889015039041e3d1b74939ab3a53c (diff) | |
download | cryptography-43f49de4fb7e878e8ff7bb5c49cef8bbddb65e3f.tar.gz cryptography-43f49de4fb7e878e8ff7bb5c49cef8bbddb65e3f.tar.bz2 cryptography-43f49de4fb7e878e8ff7bb5c49cef8bbddb65e3f.zip |
Merge pull request #1702 from reaperhulk/parse-x509-request
Parse X509 Requests
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst index 1af8d8f2..8866cf71 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -509,3 +509,12 @@ A specific ``backend`` may provide one or more of these interfaces. :param bytes data: DER formatted certificate data. :returns: An instance of :class:`~cryptography.x509.Certificate`. + + .. method:: load_pem_x509_csr(data) + + .. versionadded:: 0.9 + + :param bytes data: PEM formatted certificate signing request data. + + :returns: An instance of + :class:`~cryptography.x509.CertificateSigningRequest`. |