From 341ff85a7ceee3fb2e39e3ea11768b37e195445f Mon Sep 17 00:00:00 2001 From: Andre Caron Date: Sat, 6 Jun 2015 20:14:31 -0400 Subject: Fully qualifies symbols in doc references. --- docs/x509.rst | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'docs') 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 -- cgit v1.2.3