diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2018-08-31 18:25:52 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-08-31 19:25:52 -0400 |
commit | dd6b78be80e9b31e07a9ef695aaa902ef042dcfd (patch) | |
tree | caba9f7db963f92cd2d05a91ae356cc596409243 /docs | |
parent | 33dbd9365f4018c6e010d99f702dd9cad3e7c5c6 (diff) | |
download | cryptography-dd6b78be80e9b31e07a9ef695aaa902ef042dcfd.tar.gz cryptography-dd6b78be80e9b31e07a9ef695aaa902ef042dcfd.tar.bz2 cryptography-dd6b78be80e9b31e07a9ef695aaa902ef042dcfd.zip |
Fixes #4333 -- added support for precert poison extension (#4442)
* Fixes #4333 -- added support for precert poison extension
* Make work on all OpenSSL versions
* fixed flake8 + docs
* fix for older OpenSSLs
* document this
* spell
Diffstat (limited to 'docs')
-rw-r--r-- | docs/x509/reference.rst | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst index 5fa8471b..ede08aa5 100644 --- a/docs/x509/reference.rst +++ b/docs/x509/reference.rst @@ -1944,6 +1944,23 @@ X.509 Extensions :attr:`~cryptography.x509.oid.ExtensionOID.PRECERT_SIGNED_CERTIFICATE_TIMESTAMPS`. +.. class:: PrecertPoison() + + .. versionadded:: 2.4 + + This extension indicates that the certificate should not be treated as a + certificate for the purposes of validation, but is instead for submission + to a certificate transparency log in order to obtain SCTs which will be + embedded in a :class:`PrecertificateSignedCertificateTimestamps` extension + on the final certificate. + + .. attribute:: oid + + :type: :class:`ObjectIdentifier` + + Returns :attr:`~cryptography.x509.oid.ExtensionOID.PRECERT_POISON`. + + .. class:: DeltaCRLIndicator(crl_number) .. versionadded:: 2.1 @@ -2804,6 +2821,12 @@ instances. The following common OIDs are available as constants. Corresponds to the dotted string ``"1.3.6.1.4.1.11129.2.4.2"``. + .. attribute:: PRECERT_POISON + + .. versionadded:: 2.4 + + Corresponds to the dotted string ``"1.3.6.1.4.1.11129.2.4.3"``. + .. attribute:: POLICY_CONSTRAINTS Corresponds to the dotted string ``"2.5.29.36"``. The identifier for the |