aboutsummaryrefslogtreecommitdiffstats
path: root/docs/x509.rst
diff options
context:
space:
mode:
authorAndre Caron <andre.l.caron@gmail.com>2015-05-31 18:10:04 -0400
committerIan Cordasco <graffatcolmingov@gmail.com>2015-06-24 13:35:49 -0500
commit6d7e39b039c6c1f56084088b96a4a73566b25844 (patch)
treef4e157396fb7f2d96591c7542e8c0f78106ab46b /docs/x509.rst
parentfc164c5e4fce2f6617b35887a5799ec10082b906 (diff)
downloadcryptography-6d7e39b039c6c1f56084088b96a4a73566b25844.tar.gz
cryptography-6d7e39b039c6c1f56084088b96a4a73566b25844.tar.bz2
cryptography-6d7e39b039c6c1f56084088b96a4a73566b25844.zip
Adds updates docs for method chaining in CSR builder.
Diffstat (limited to 'docs/x509.rst')
-rw-r--r--docs/x509.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/x509.rst b/docs/x509.rst
index 8507edc1..f79f630c 100644
--- a/docs/x509.rst
+++ b/docs/x509.rst
@@ -479,15 +479,18 @@ X.509 CSR (Certificate Signing Request) Builder Object
.. method:: set_version(version)
- :param version: The :class:`Version` of the X.509 protocol.
+ :param version: The :class:`Version` of the X.509 protocol.
+ :returns: A new `CertificateSigningRequestBuilder`.
.. method:: set_subject_name(name)
:param name: The :class:`Name` of the certificate subject.
+ :returns: A new `CertificateSigningRequestBuilder`.
.. method:: add_extension(extension)
:param extension: The :class:`Extension` to add to the request.
+ :returns: A new `CertificateSigningRequestBuilder`.
.. method:: sign(backend, private_key, algorithm)