diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-03-20 09:50:52 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-03-20 09:50:52 -0400 |
commit | 9bab0edd9cb94825157ce9d491e3474ebb7d6afd (patch) | |
tree | 8f3137b62d8e7a2688dc8946186a3d44c657ed67 /src | |
parent | 5f9c5cb4b8a96941d91904c88339a4dfbe024487 (diff) | |
download | cryptography-9bab0edd9cb94825157ce9d491e3474ebb7d6afd.tar.gz cryptography-9bab0edd9cb94825157ce9d491e3474ebb7d6afd.tar.bz2 cryptography-9bab0edd9cb94825157ce9d491e3474ebb7d6afd.zip |
Refs #3461 -- added the OID for the SCT x.509 extension (#3464)
* Refs #3461 -- added the OID for the SCT x.509 extension
* Version added
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/x509/oid.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cryptography/x509/oid.py b/src/cryptography/x509/oid.py index 3edac72e..1beed0f9 100644 --- a/src/cryptography/x509/oid.py +++ b/src/cryptography/x509/oid.py @@ -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): |