diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/x509.py | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/cryptography/x509.py b/src/cryptography/x509.py index c4ada20e..0aeafa74 100644 --- a/src/cryptography/x509.py +++ b/src/cryptography/x509.py @@ -55,9 +55,9 @@ _OID_NAMES = { "2.5.29.17": "subjectAltName", "2.5.29.18": "issuerAltName", "2.5.29.19": "basicConstraints", - "2.5.29.21": "CRLReason", - "2.5.29.24": "InvalidityDate", - "2.5.29.29": "CertificateIssuer", + "2.5.29.21": "cRLReason", + "2.5.29.24": "invalidityDate", + "2.5.29.29": "certificateIssuer", "2.5.29.30": "nameConstraints", "2.5.29.31": "cRLDistributionPoints", "2.5.29.32": "certificatePolicies", @@ -1253,12 +1253,6 @@ class CertificateRevocationList(object): """ @abc.abstractmethod - def verify(self, pubkey): - """ - Verify this CRL against a given 'pubkey'. - """ - - @abc.abstractmethod def __eq__(self, other): """ Checks equality. |