diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-09-22 21:29:36 +0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-09-22 09:29:36 -0400 |
commit | 5e3cc98473ad54db390736ac81bb74210e85056d (patch) | |
tree | d8e0d5e03aee005dc0205661e55d785625b9a71f /docs | |
parent | 2fc5849960032a246f869ed1a5d7597d64169cfa (diff) | |
download | cryptography-5e3cc98473ad54db390736ac81bb74210e85056d.tar.gz cryptography-5e3cc98473ad54db390736ac81bb74210e85056d.tar.bz2 cryptography-5e3cc98473ad54db390736ac81bb74210e85056d.zip |
support delta crl indicator extension (#3936)
This is an extension for CRLs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/x509/reference.rst | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst index 71ac9d99..dea7ee3b 100644 --- a/docs/x509/reference.rst +++ b/docs/x509/reference.rst @@ -1954,6 +1954,30 @@ X.509 Extensions :attr:`~cryptography.x509.oid.ExtensionOID.PRECERT_SIGNED_CERTIFICATE_TIMESTAMPS`. +.. class:: DeltaCRLIndicator(crl_number) + + .. versionadded:: 2.1 + + The delta CRL indicator is a CRL extension that identifies a CRL as being + a delta CRL. Delta CRLs contain updates to revocation information + previously distributed, rather than all the information that would appear + in a complete CRL. + + :param int crl_number: The CRL number of the complete CRL that the + delta CRL is updating. + + .. attribute:: oid + + :type: :class:`ObjectIdentifier` + + Returns + :attr:`~cryptography.x509.oid.ExtensionOID.DELTA_CRL_INDICATOR`. + + .. attribute:: crl_number + + :type: int + + .. class:: AuthorityInformationAccess(descriptions) .. versionadded:: 0.9 @@ -2749,6 +2773,14 @@ instances. The following common OIDs are available as constants. the ``CRLNumber`` extension type. This extension only has meaning for certificate revocation lists. + .. attribute:: DELTA_CRL_INDICATOR + + .. versionadded:: 2.1 + + Corresponds to the dotted string ``"2.5.29.27"``. The identifier for + the ``DeltaCRLIndicator`` extension type. This extension only has + meaning for certificate revocation lists. + .. attribute:: PRECERT_SIGNED_CERTIFICATE_TIMESTAMPS .. versionadded:: 1.9 |