aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAndre Caron <andre.l.caron@gmail.com>2015-06-06 20:14:31 -0400
committerIan Cordasco <graffatcolmingov@gmail.com>2015-06-24 13:35:49 -0500
commit341ff85a7ceee3fb2e39e3ea11768b37e195445f (patch)
tree5734c5da763ddd4b38d4ed0ecf902d80b9ec3195 /docs
parent472fd6991e05735e00fdca7fbe2573a44fdabd17 (diff)
downloadcryptography-341ff85a7ceee3fb2e39e3ea11768b37e195445f.tar.gz
cryptography-341ff85a7ceee3fb2e39e3ea11768b37e195445f.tar.bz2
cryptography-341ff85a7ceee3fb2e39e3ea11768b37e195445f.zip
Fully qualifies symbols in doc references.
Diffstat (limited to 'docs')
-rw-r--r--docs/x509.rst15
1 files changed, 10 insertions, 5 deletions
diff --git a/docs/x509.rst b/docs/x509.rst
index 52117c84..06a363fc 100644
--- a/docs/x509.rst
+++ b/docs/x509.rst
@@ -505,15 +505,19 @@ X.509 CSR (Certificate Signing Request) Builder Object
.. method:: set_subject_name(name)
- :param name: The :class:`Name` of the certificate subject.
- :returns: A new `CertificateSigningRequestBuilder`.
+ :param name: The :class:`~cryptography.x509.Name` of the certificate
+ subject.
+ :returns: A new
+ :class:`~cryptography.x509.CertificateSigningRequestBuilder`.
.. method:: add_extension(extension, critical=False)
- :param extension: The :class:`Extension` to add to the request.
+ :param extension: The :class:`~cryptography.x509.Extension` to add to
+ the request.
:param critical: Set to `True` if the extension must be understood and
handled by whoever reads the certificate.
- :returns: A new `CertificateSigningRequestBuilder`.
+ :returns: A new
+ :class:`~cryptography.x509.CertificateSigningRequestBuilder`.
.. method:: sign(backend, private_key, algorithm)
@@ -532,7 +536,8 @@ X.509 CSR (Certificate Signing Request) Builder Object
:class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm`
that will be used to generate the request signature.
- :type: :class:`CertificateSigningRequest`
+ :returns: A new
+ :class:`~cryptography.x509.CertificateSigningRequest`.
.. class:: Name