aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-02-26 08:28:29 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-02-26 08:28:29 -0600
commited9163d0195a7d9bd555093641fabf5e18f5c733 (patch)
treeb08994a03e995828cd61321daedeca56a9f31bc5 /src
parent159b3b5ba975fcc2ebebfc707961070fc5fefacf (diff)
downloadcryptography-ed9163d0195a7d9bd555093641fabf5e18f5c733.tar.gz
cryptography-ed9163d0195a7d9bd555093641fabf5e18f5c733.tar.bz2
cryptography-ed9163d0195a7d9bd555093641fabf5e18f5c733.zip
export PolicyConstraints
Diffstat (limited to 'src')
-rw-r--r--src/cryptography/x509/__init__.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/cryptography/x509/__init__.py b/src/cryptography/x509/__init__.py
index a1deb7f4..3f0ac14d 100644
--- a/src/cryptography/x509/__init__.py
+++ b/src/cryptography/x509/__init__.py
@@ -19,9 +19,10 @@ from cryptography.x509.extensions import (
DistributionPoint, DuplicateExtension, ExtendedKeyUsage, Extension,
ExtensionNotFound, ExtensionType, Extensions, GeneralNames,
InhibitAnyPolicy, InvalidityDate, IssuerAlternativeName, KeyUsage,
- NameConstraints, NoticeReference, OCSPNoCheck, PolicyInformation,
- ReasonFlags, SubjectAlternativeName, SubjectKeyIdentifier,
- UnrecognizedExtension, UnsupportedExtension, UserNotice
+ NameConstraints, NoticeReference, OCSPNoCheck, PolicyConstraints,
+ PolicyInformation, ReasonFlags, SubjectAlternativeName,
+ SubjectKeyIdentifier, UnrecognizedExtension, UnsupportedExtension,
+ UserNotice
)
from cryptography.x509.general_name import (
DNSName, DirectoryName, GeneralName, IPAddress, OtherName, RFC822Name,
@@ -170,4 +171,5 @@ __all__ = [
"CRLReason",
"InvalidityDate",
"UnrecognizedExtension",
+ "PolicyConstraints",
]