diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2021-10-30 17:40:28 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-31 05:40:28 +0800 |
| commit | 9275fd07e37688ed7fb301852d899d99a5ac7fc3 (patch) | |
| tree | dcbdb35cb0754be35333f5fc25b82ee45b1d5cff /docs | |
| parent | c4f73412219d1db740faa743e155e58f626ec613 (diff) | |
| download | cryptography-9275fd07e37688ed7fb301852d899d99a5ac7fc3.tar.gz | |
Convert CRL creation to Rust (#6496)
* Convert CRL creation to Rust
* fixes
* small reflows
* Delete all teh code
* flake8
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/hazmat/backends/interfaces.rst | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst index 627fe7448..6c2f0aa78 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -500,26 +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_crl(builder, private_key, algorithm) - - .. versionadded:: 1.2 - - :param builder: An instance of - :class:`~cryptography.x509.CertificateRevocationListBuilder`. - - :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 CRL. - - :param algorithm: The - :class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm` - that will be used to generate the CRL signature. - - :returns: A new instance of - :class:`~cryptography.x509.CertificateRevocationList`. - .. method:: create_x509_revoked_certificate(builder) .. versionadded:: 1.2 |
