From b7912eea2ab25a16f77cd60889d8529d9f5aafa2 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 3 Jul 2017 10:07:02 -0400 Subject: Fixes #3745 -- add the any EKU EKU (#3750) * Fixes #3745 -- add the any EKU EKU * docs * whitespace * versionadded --- src/cryptography/x509/oid.py | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/cryptography/x509/oid.py b/src/cryptography/x509/oid.py index 1beed0f9..4a6fa3c1 100644 --- a/src/cryptography/x509/oid.py +++ b/src/cryptography/x509/oid.py @@ -171,6 +171,7 @@ class ExtendedKeyUsageOID(object): EMAIL_PROTECTION = ObjectIdentifier("1.3.6.1.5.5.7.3.4") TIME_STAMPING = ObjectIdentifier("1.3.6.1.5.5.7.3.8") OCSP_SIGNING = ObjectIdentifier("1.3.6.1.5.5.7.3.9") + ANY_EXTENDED_KEY_USAGE = ObjectIdentifier("2.5.29.37.0") class AuthorityInformationAccessOID(object): -- cgit v1.2.3