diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-22 21:34:04 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-22 21:34:04 -0500 |
commit | 53f45f92d8594ce97f6af99edba1ddca0c4fd838 (patch) | |
tree | 802223e090f7e67da0a4e1e72649a2600e80034d /src | |
parent | 326833d9fdbeaec8a810efdbd51d857b339c4bba (diff) | |
parent | 2587d309fa162195b2bb55677d53c2db52bef9dd (diff) | |
download | cryptography-53f45f92d8594ce97f6af99edba1ddca0c4fd838.tar.gz cryptography-53f45f92d8594ce97f6af99edba1ddca0c4fd838.tar.bz2 cryptography-53f45f92d8594ce97f6af99edba1ddca0c4fd838.zip |
Merge pull request #2549 from reaperhulk/more-crl-extensions
More CRL extensions
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/hazmat/backends/openssl/x509.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cryptography/hazmat/backends/openssl/x509.py b/src/cryptography/hazmat/backends/openssl/x509.py index 6f335f48..45c0df50 100644 --- a/src/cryptography/hazmat/backends/openssl/x509.py +++ b/src/cryptography/hazmat/backends/openssl/x509.py @@ -987,6 +987,10 @@ _REVOKED_UNSUPPORTED_EXTENSIONS = set([ _CRL_EXTENSION_HANDLERS = { ExtensionOID.CRL_NUMBER: _decode_crl_number, ExtensionOID.AUTHORITY_KEY_IDENTIFIER: _decode_authority_key_identifier, + ExtensionOID.ISSUER_ALTERNATIVE_NAME: _decode_issuer_alt_name, + ExtensionOID.AUTHORITY_INFORMATION_ACCESS: ( + _decode_authority_information_access + ), } _CERTIFICATE_EXTENSION_PARSER = _X509ExtensionParser( |