aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/x509
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2018-10-29 02:07:40 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2018-10-28 14:07:40 -0400
commit6e756aec9c91a8350208050b0a3775ea63891cfd (patch)
treea7935c780198a0bd2921f39188b65f28e580d5c9 /src/cryptography/x509
parent80a0ab454f4e6a8a76ac9d45481522bcc22535c7 (diff)
downloadcryptography-6e756aec9c91a8350208050b0a3775ea63891cfd.tar.gz
cryptography-6e756aec9c91a8350208050b0a3775ea63891cfd.tar.bz2
cryptography-6e756aec9c91a8350208050b0a3775ea63891cfd.zip
add IDP OID and docs (#4533)
Diffstat (limited to 'src/cryptography/x509')
-rw-r--r--src/cryptography/x509/oid.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cryptography/x509/oid.py b/src/cryptography/x509/oid.py
index bc654640..d121a807 100644
--- a/src/cryptography/x509/oid.py
+++ b/src/cryptography/x509/oid.py
@@ -82,6 +82,7 @@ class ExtensionOID(object):
EXTENDED_KEY_USAGE = ObjectIdentifier("2.5.29.37")
FRESHEST_CRL = ObjectIdentifier("2.5.29.46")
INHIBIT_ANY_POLICY = ObjectIdentifier("2.5.29.54")
+ ISSUING_DISTRIBUTION_POINT = ObjectIdentifier("2.5.29.28")
AUTHORITY_INFORMATION_ACCESS = ObjectIdentifier("1.3.6.1.5.5.7.1.1")
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")
@@ -265,6 +266,9 @@ _OID_NAMES = {
ExtensionOID.EXTENDED_KEY_USAGE: "extendedKeyUsage",
ExtensionOID.FRESHEST_CRL: "freshestCRL",
ExtensionOID.INHIBIT_ANY_POLICY: "inhibitAnyPolicy",
+ ExtensionOID.ISSUING_DISTRIBUTION_POINT: (
+ "issuingDistributionPoint"
+ ),
ExtensionOID.AUTHORITY_INFORMATION_ACCESS: "authorityInfoAccess",
ExtensionOID.SUBJECT_INFORMATION_ACCESS: "subjectInfoAccess",
ExtensionOID.OCSP_NO_CHECK: "OCSPNoCheck",