diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/x509/base.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/cryptography/x509/base.py b/src/cryptography/x509/base.py index c10b338e..a6a8be7c 100644 --- a/src/cryptography/x509/base.py +++ b/src/cryptography/x509/base.py @@ -59,18 +59,6 @@ def _key_identifier_from_public_key(public_key): return hashlib.sha1(data).digest() -_GENERAL_NAMES = { - 0: "otherName", - 1: "rfc822Name", - 2: "dNSName", - 3: "x400Address", - 4: "directoryName", - 5: "ediPartyName", - 6: "uniformResourceIdentifier", - 7: "iPAddress", - 8: "registeredID", -} - _UNIX_EPOCH = datetime.datetime(1970, 1, 1) |