diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/x509.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/x509.rst b/docs/x509.rst index 850e3df1..8e762ef1 100644 --- a/docs/x509.rst +++ b/docs/x509.rst @@ -366,6 +366,17 @@ X.509 CSR (Certificate Signing Request) Object >>> isinstance(csr.signature_hash_algorithm, hashes.SHA1) True + .. method:: public_bytes(encoding) + + :param encoding: The + :class:`~cryptography.hazmat.primitives.serialization.Encoding` + that will be used to serialize the certificate request. + + :return bytes: The data that can be written to a file or sent + over the network to be signed by the certificate + authority. + + .. class:: Name .. versionadded:: 0.8 |