diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-26 12:05:51 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-26 12:05:51 -0500 |
commit | d67d77f666417bff7ea52e2754f7a680c7a83b0c (patch) | |
tree | 796e8feff62e053b9a73626402424e322dfe48bd /src | |
parent | 0860ef60adc7974dc26cfdd3c7adeb5e4e6e6448 (diff) | |
parent | 7058eced3a27115f721887e836d16ee4fe4c7e9d (diff) | |
download | cryptography-d67d77f666417bff7ea52e2754f7a680c7a83b0c.tar.gz cryptography-d67d77f666417bff7ea52e2754f7a680c7a83b0c.tar.bz2 cryptography-d67d77f666417bff7ea52e2754f7a680c7a83b0c.zip |
Merge pull request #2579 from reaperhulk/crlentry-crlreason
switch CRLReason to use a class
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/hazmat/backends/openssl/x509.py | 2 | ||||
-rw-r--r-- | src/cryptography/x509/__init__.py | 3 | ||||
-rw-r--r-- | src/cryptography/x509/extensions.py | 25 |
3 files changed, 28 insertions, 2 deletions
diff --git a/src/cryptography/hazmat/backends/openssl/x509.py b/src/cryptography/hazmat/backends/openssl/x509.py index 05390809..2650b5d4 100644 --- a/src/cryptography/hazmat/backends/openssl/x509.py +++ b/src/cryptography/hazmat/backends/openssl/x509.py @@ -700,7 +700,7 @@ def _decode_crl_reason(backend, enum): code = backend._lib.ASN1_ENUMERATED_get(enum) try: - return _CRL_REASON_CODE_TO_ENUM[code] + return x509.CRLReason(_CRL_REASON_CODE_TO_ENUM[code]) except KeyError: raise ValueError("Unsupported reason code: {0}".format(code)) diff --git a/src/cryptography/x509/__init__.py b/src/cryptography/x509/__init__.py index 9946daa0..89e7f063 100644 --- a/src/cryptography/x509/__init__.py +++ b/src/cryptography/x509/__init__.py @@ -15,7 +15,7 @@ from cryptography.x509.base import ( from cryptography.x509.extensions import ( AccessDescription, AuthorityInformationAccess, AuthorityKeyIdentifier, BasicConstraints, CRLDistributionPoints, - CRLNumber, CertificateIssuer, CertificatePolicies, + CRLNumber, CRLReason, CertificateIssuer, CertificatePolicies, DistributionPoint, DuplicateExtension, ExtendedKeyUsage, Extension, ExtensionNotFound, ExtensionType, Extensions, GeneralNames, InhibitAnyPolicy, IssuerAlternativeName, KeyUsage, @@ -167,4 +167,5 @@ __all__ = [ "_GENERAL_NAMES", "CRLExtensionOID", "CertificateIssuer", + "CRLReason", ] diff --git a/src/cryptography/x509/extensions.py b/src/cryptography/x509/extensions.py index 3c017ea1..6ae00927 100644 --- a/src/cryptography/x509/extensions.py +++ b/src/cryptography/x509/extensions.py @@ -976,3 +976,28 @@ class CertificateIssuer(object): def __ne__(self, other): return not self == other + + +@utils.register_interface(ExtensionType) +class CRLReason(object): + oid = CRLEntryExtensionOID.CRL_REASON + + def __init__(self, reason): + if not isinstance(reason, ReasonFlags): + raise TypeError("reason must be an element from ReasonFlags") + + self._reason = reason + + def __repr__(self): + return "<CRLReason(reason={0})>".format(self._reason) + + def __eq__(self, other): + if not isinstance(other, CRLReason): + return NotImplemented + + return self.reason == other.reason + + def __ne__(self, other): + return not self == other + + reason = utils.read_only_property("_reason") |