aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-25 18:13:09 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-25 18:13:09 -0600
commitfd4028e73ac508c94148cf803170ec792a94a66f (patch)
tree355193e9cd4b0924a865c0e51f5bb5b6b1881dd6
parentc6242dcaa972b0dd53af1ed8eedfd9b797dbaf2f (diff)
downloadcryptography-fd4028e73ac508c94148cf803170ec792a94a66f.tar.gz
cryptography-fd4028e73ac508c94148cf803170ec792a94a66f.tar.bz2
cryptography-fd4028e73ac508c94148cf803170ec792a94a66f.zip
allow CRLExtensionOID to still be imported from x509
-rw-r--r--src/cryptography/x509/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cryptography/x509/__init__.py b/src/cryptography/x509/__init__.py
index 8698c089..32543e67 100644
--- a/src/cryptography/x509/__init__.py
+++ b/src/cryptography/x509/__init__.py
@@ -29,7 +29,7 @@ from cryptography.x509.general_name import (
)
from cryptography.x509.name import Name, NameAttribute
from cryptography.x509.oid import (
- AuthorityInformationAccessOID, CRLEntryExtensionOID,
+ AuthorityInformationAccessOID, CRLEntryExtensionOID, CRLExtensionOID,
CertificatePoliciesOID, ExtendedKeyUsageOID, ExtensionOID, NameOID,
ObjectIdentifier, SignatureAlgorithmOID, _SIG_OIDS_TO_HASH
)
@@ -164,4 +164,5 @@ __all__ = [
"OID_CA_ISSUERS",
"OID_OCSP",
"_GENERAL_NAMES",
+ "CRLExtensionOID",
]