diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2021-10-30 17:10:26 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-31 05:10:26 +0800 |
| commit | 2336005c518692164fcf7cdc5ea1c61ba35b8434 (patch) | |
| tree | 7315701d084c8d9eec6ee6c61958200f2fae3d61 /docs | |
| parent | 6bb47a420b6d057723d3e9bac2ccb2aa715a0eae (diff) | |
| download | cryptography-2336005c518692164fcf7cdc5ea1c61ba35b8434.tar.gz | |
Convert CSR creation to Rust (#6495)
* Convert CSR creation to Rust
* put this back
* unused
* coverage
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/hazmat/backends/interfaces.rst | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst index b22c70e33..627fe7448 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -500,28 +500,6 @@ A specific ``backend`` may provide one or more of these interfaces. A backend with methods for working with X.509 objects. - .. method:: create_x509_csr(builder, private_key, algorithm) - - .. versionadded:: 1.0 - - :param builder: An instance of - :class:`~cryptography.x509.CertificateSigningRequestBuilder`. - - :param private_key: The - :class:`~cryptography.hazmat.primitives.asymmetric.rsa.RSAPrivateKey`, - :class:`~cryptography.hazmat.primitives.asymmetric.dsa.DSAPrivateKey` or - :class:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePrivateKey` - that will be used to sign the request. When the request is - signed by a certificate authority, the private key's associated - public key will be stored in the resulting certificate. - - :param algorithm: The - :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` - that will be used to generate the request signature. - - :returns: A new instance of - :class:`~cryptography.x509.CertificateSigningRequest`. - .. method:: create_x509_crl(builder, private_key, algorithm) .. versionadded:: 1.2 |
