diff options
Diffstat (limited to 'src/cryptography/x509/__init__.py')
-rw-r--r-- | src/cryptography/x509/__init__.py | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/cryptography/x509/__init__.py b/src/cryptography/x509/__init__.py index b1a32ef6..3b747302 100644 --- a/src/cryptography/x509/__init__.py +++ b/src/cryptography/x509/__init__.py @@ -4,7 +4,6 @@ from __future__ import absolute_import, division, print_function -from cryptography import utils from cryptography.x509 import certificate_transparency from cryptography.x509.base import ( Certificate, CertificateBuilder, CertificateRevocationList, @@ -25,7 +24,7 @@ from cryptography.x509.extensions import ( NameConstraints, NoticeReference, OCSPNoCheck, PolicyConstraints, PolicyInformation, PrecertificateSignedCertificateTimestamps, ReasonFlags, SubjectAlternativeName, SubjectKeyIdentifier, UnrecognizedExtension, - UnsupportedExtension, UserNotice + UserNotice ) from cryptography.x509.general_name import ( DNSName, DirectoryName, GeneralName, IPAddress, OtherName, RFC822Name, @@ -110,13 +109,6 @@ OID_INVALIDITY_DATE = CRLEntryExtensionOID.INVALIDITY_DATE OID_CA_ISSUERS = AuthorityInformationAccessOID.CA_ISSUERS OID_OCSP = AuthorityInformationAccessOID.OCSP -UnsupportedExtension = utils.deprecated( - UnsupportedExtension, - __name__, - "UnsupportedExtension is no longer necessary, it is never raised", - utils.DeprecatedIn19 -) - __all__ = [ "certificate_transparency", "load_pem_x509_certificate", @@ -128,7 +120,6 @@ __all__ = [ "random_serial_number", "InvalidVersion", "DuplicateExtension", - "UnsupportedExtension", "ExtensionNotFound", "UnsupportedGeneralNameType", "NameAttribute", |