diff options
author | Ingela Anderton Andin <[email protected]> | 2014-11-04 15:41:16 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-03-09 10:15:41 +0100 |
commit | 601246b87b7df5247fc5ab1cf39e665935e335ae (patch) | |
tree | deeb800cc72710e981ce9b53b275e70eff95e926 /lib/public_key/src/pubkey_crl.erl | |
parent | 9e3299ca1b5d70562372a8eb51abf1cd96a284db (diff) | |
download | otp-601246b87b7df5247fc5ab1cf39e665935e335ae.tar.gz otp-601246b87b7df5247fc5ab1cf39e665935e335ae.tar.bz2 otp-601246b87b7df5247fc5ab1cf39e665935e335ae.zip |
public_key: Improve CRL handling support
Diffstat (limited to 'lib/public_key/src/pubkey_crl.erl')
-rw-r--r-- | lib/public_key/src/pubkey_crl.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/public_key/src/pubkey_crl.erl b/lib/public_key/src/pubkey_crl.erl index f0df4bc3f2..488cc97c70 100644 --- a/lib/public_key/src/pubkey_crl.erl +++ b/lib/public_key/src/pubkey_crl.erl @@ -41,10 +41,10 @@ validate(OtpCert, OtherDPCRLs, DP, {DerCRL, CRL}, {DerDeltaCRL, DeltaCRL}, CRLIssuer = TBSCRL#'TBSCertList'.issuer, AltNames = case pubkey_cert:select_extension(?'id-ce-subjectAltName', TBSCert#'OTPTBSCertificate'.extensions) of - undefined -> - []; - Ext -> - Ext#'Extension'.extnValue + #'Extension'{extnValue = Value} -> + Value; + _ -> + [] end, revoked_status(DP, IDP, {directoryName, CRLIssuer}, [ {directoryName, CertIssuer} | AltNames], SerialNumber, Revoked, |