diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-25 14:00:02 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-25 14:00:02 -0500 |
commit | ef5f9fc339a7137f5a9761f8c27a08c554c27b1c (patch) | |
tree | 95195d5a52f3ed575a2f7ac42f50187a08eae05a /docs | |
parent | 58dc259214ff05243ec4e72c86cc2c7a76ca6e02 (diff) | |
parent | aa8b0f43db0f4708ecf12ba2a2034ba6165d5f76 (diff) | |
download | cryptography-ef5f9fc339a7137f5a9761f8c27a08c554c27b1c.tar.gz cryptography-ef5f9fc339a7137f5a9761f8c27a08c554c27b1c.tar.bz2 cryptography-ef5f9fc339a7137f5a9761f8c27a08c554c27b1c.zip |
Merge pull request #2570 from reaperhulk/revokedcertificate-interface
add create_x509_revoked_certificate to x509backend interface
Diffstat (limited to 'docs')
-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 29abee1c..73011dd0 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -589,6 +589,15 @@ A specific ``backend`` may provide one or more of these interfaces. :returns: A new instance of :class:`~cryptography.x509.CertificateRevocationList`. + .. method:: create_x509_revoked_certificate(builder) + + .. versionadded:: 1.2 + + :param builder: An instance of RevokedCertificateBuilder. + + :returns: A new instance of + :class:`~cryptography.x509.RevokedCertificate`. + .. class:: DHBackend .. versionadded:: 0.9 |