aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/x509
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-03-21 08:58:22 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-03-21 08:58:47 -0400
commitde0d5823e7f009e721e203064e8ad5f977e74021 (patch)
tree365e5e60f6fcd2237b93489815888d808735edad /src/cryptography/x509
parent2e820e2a9c43be843a31db10900f19f735b28232 (diff)
downloadcryptography-de0d5823e7f009e721e203064e8ad5f977e74021.tar.gz
cryptography-de0d5823e7f009e721e203064e8ad5f977e74021.tar.bz2
cryptography-de0d5823e7f009e721e203064e8ad5f977e74021.zip
complete deprecation of CRLExtensionOID in favor of CRLEntryExtensionOID
Deprecated in 1.2, removed in 1.4 per policy.
Diffstat (limited to 'src/cryptography/x509')
-rw-r--r--src/cryptography/x509/__init__.py9
-rw-r--r--src/cryptography/x509/oid.py8
2 files changed, 0 insertions, 17 deletions
diff --git a/src/cryptography/x509/__init__.py b/src/cryptography/x509/__init__.py
index 8d7bad27..968d29d0 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.base import (
Certificate, CertificateBuilder, CertificateRevocationList,
CertificateRevocationListBuilder,
@@ -38,13 +37,6 @@ from cryptography.x509.oid import (
)
-CRLExtensionOID = utils.deprecated(
- CRLEntryExtensionOID,
- __name__,
- "CRLExtensionOID has been renamed to CRLEntryExtensionOID",
- utils.DeprecatedIn12
-)
-
OID_AUTHORITY_INFORMATION_ACCESS = ExtensionOID.AUTHORITY_INFORMATION_ACCESS
OID_AUTHORITY_KEY_IDENTIFIER = ExtensionOID.AUTHORITY_KEY_IDENTIFIER
OID_BASIC_CONSTRAINTS = ExtensionOID.BASIC_CONSTRAINTS
@@ -174,7 +166,6 @@ __all__ = [
"OID_CA_ISSUERS",
"OID_OCSP",
"_GENERAL_NAMES",
- "CRLExtensionOID",
"CertificateIssuer",
"CRLReason",
"InvalidityDate",
diff --git a/src/cryptography/x509/oid.py b/src/cryptography/x509/oid.py
index ced15103..48e9d696 100644
--- a/src/cryptography/x509/oid.py
+++ b/src/cryptography/x509/oid.py
@@ -94,14 +94,6 @@ class CRLEntryExtensionOID(object):
INVALIDITY_DATE = ObjectIdentifier("2.5.29.24")
-CRLExtensionOID = utils.deprecated(
- CRLEntryExtensionOID,
- __name__,
- "CRLExtensionOID has been renamed to CRLEntryExtensionOID",
- utils.DeprecatedIn12
-)
-
-
class NameOID(object):
COMMON_NAME = ObjectIdentifier("2.5.4.3")
COUNTRY_NAME = ObjectIdentifier("2.5.4.6")