diff options
author | Ivan Ristic <ivanr@webkreator.com> | 2015-03-26 13:10:37 +0000 |
---|---|---|
committer | Ivan Ristic <ivanr@webkreator.com> | 2015-03-26 13:10:37 +0000 |
commit | e5e01cb41f3f76c609e34f4be5453fa41283be6f (patch) | |
tree | bd4e64be7a22af176b2770cf7ef6537f94b3d5da | |
parent | f56dd805e528a8f1c571f960760010ed394a40e4 (diff) | |
download | ssllabs-scan-e5e01cb41f3f76c609e34f4be5453fa41283be6f.zip ssllabs-scan-e5e01cb41f3f76c609e34f4be5453fa41283be6f.tar.gz ssllabs-scan-e5e01cb41f3f76c609e34f4be5453fa41283be6f.tar.bz2 |
Add support for additional fields in ChainCert, available in 1.16.x.
-rw-r--r-- | ssllabs-scan.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ssllabs-scan.go b/ssllabs-scan.go index 078ccd6..e121c4c 100644 --- a/ssllabs-scan.go +++ b/ssllabs-scan.go @@ -121,9 +121,15 @@ type LabsCert struct { type LabsChainCert struct { Subject string Label string + NotBefore int64 + NotAfter int64 IssuerSubject string IssuerLabel string + SigAlg string Issues int + KeyAlg string + KeySize int + KeyStrength int Raw string } |