Skip to content

Commit

Permalink
Refs #3461 -- added the OID for the SCT x.509 extension (#3464)
Browse files Browse the repository at this point in the history
* Refs #3461 -- added the OID for the SCT x.509 extension

* Version added
  • Loading branch information
alex authored and reaperhulk committed Mar 20, 2017
1 parent 5f9c5cb commit 9bab0ed
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/x509/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2605,6 +2605,12 @@ instances. The following common OIDs are available as constants.
the ``CRLNumber`` extension type. This extension only has meaning
for certificate revocation lists.

.. attribute:: PRECERT_SIGNED_CERTIFICATE_TIMESTAMPS

.. versionadded:: 1.9

Corresponds to the dotted string ``"1.3.6.1.4.1.11129.2.4.2"``.

.. attribute:: POLICY_CONSTRAINTS

Corresponds to the dotted string ``"2.5.29.36"``. The identifier for the
Expand Down
3 changes: 3 additions & 0 deletions src/cryptography/x509/oid.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ class ExtensionOID(object):
SUBJECT_INFORMATION_ACCESS = ObjectIdentifier("1.3.6.1.5.5.7.1.11")
OCSP_NO_CHECK = ObjectIdentifier("1.3.6.1.5.5.7.48.1.5")
CRL_NUMBER = ObjectIdentifier("2.5.29.20")
PRECERT_SIGNED_CERTIFICATE_TIMESTAMPS = (
ObjectIdentifier("1.3.6.1.4.1.11129.2.4.2")
)


class CRLEntryExtensionOID(object):
Expand Down

0 comments on commit 9bab0ed

Please sign in to comment.