diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-23 07:35:39 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-23 07:35:39 -0500 |
commit | 7e5c96fcc3773960dcb2c44520954dc14db5d72d (patch) | |
tree | 1ed96ca76ea67b24c6fe209f63f56d586a2ed107 /docs | |
parent | 53f45f92d8594ce97f6af99edba1ddca0c4fd838 (diff) | |
parent | a9718fce3687a6a787ae8a03b989580dc68be260 (diff) | |
download | cryptography-7e5c96fcc3773960dcb2c44520954dc14db5d72d.tar.gz cryptography-7e5c96fcc3773960dcb2c44520954dc14db5d72d.tar.bz2 cryptography-7e5c96fcc3773960dcb2c44520954dc14db5d72d.zip |
Merge pull request #2552 from reaperhulk/crlnumber
CRLNumber needs to be a class for reasons
Diffstat (limited to 'docs')
-rw-r--r-- | docs/x509/reference.rst | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst index dace8c1b..4f4ce4fa 100644 --- a/docs/x509/reference.rst +++ b/docs/x509/reference.rst @@ -1695,6 +1695,26 @@ X.509 Extensions :type: int +.. class:: CRLNumber(crl_number) + + .. versionadded:: 1.2 + + The CRL number is a CRL extension that conveys a monotonically increasing + sequence number for a given CRL scope and CRL issuer. This extension allows + users to easily determine when a particular CRL supersedes another CRL. + :rfc:`5280` requires that this extension be present in conforming CRLs. + + .. attribute:: oid + + :type: :class:`ObjectIdentifier` + + Returns + :attr:`~cryptography.x509.oid.ExtensionOID.CRL_NUMBER`. + + .. attribute:: crl_number + + :type: int + .. class:: CertificatePolicies(policies) .. versionadded:: 0.9 |