diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-06 08:36:07 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-06 08:36:07 -0400 |
commit | b4fdc5e77a0cb23d1db4b344eaea4be2389d2148 (patch) | |
tree | 8a5d14ee9c1e43e873c035d66d97c07a9d375732 /docs/hazmat/backends | |
parent | 304d9386d4a6e92325a0952b356f30e34562b446 (diff) | |
parent | 1ae7653fcb027ddc0b201d50a011678c93186b11 (diff) | |
download | cryptography-b4fdc5e77a0cb23d1db4b344eaea4be2389d2148.tar.gz cryptography-b4fdc5e77a0cb23d1db4b344eaea4be2389d2148.tar.bz2 cryptography-b4fdc5e77a0cb23d1db4b344eaea4be2389d2148.zip |
Merge pull request #2219 from reaperhulk/fix-2218
rename sign_x509_certificate backend method to create_x509_certificate
Diffstat (limited to 'docs/hazmat/backends')
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst index b6b59764..442bd0de 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -550,7 +550,7 @@ A specific ``backend`` may provide one or more of these interfaces. :returns: A new object with the :class:`~cryptography.x509.CertificateSigningRequest` interface. - .. method:: sign_x509_certificate(builder, private_key, algorithm) + .. method:: create_x509_certificate(builder, private_key, algorithm) .. versionadded:: 1.0 |