diff options
author | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2020-11-05 12:37:35 +0100 |
---|---|---|
committer | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2020-11-05 12:37:35 +0100 |
commit | 906f3161dbbff07515244134e0e88641dd68fbb3 (patch) | |
tree | e2a449a670c90f9b3a4dca907e1b0ea79581c179 | |
parent | 88ae8d5813002a66c83de21f1f6c8eb8da544b2a (diff) |
added doc
-rw-r--r-- | verify.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -12,12 +12,14 @@ import ( "github.com/system-transparency/stfe/x509util" ) +// buildChainFromDerList builds an X.509 certificate chain from a list of +// DER-encoded certificates using the log's configured trust anchors, extended +// key-usages, and maximum chain length (which includes the trust anchor). func (lp *LogParameters) buildChainFromDerList(derChain [][]byte) ([]*x509.Certificate, error) { certificate, intermediatePool, err := x509util.ParseDerChain(derChain) if err != nil { return nil, err } - opts := x509.VerifyOptions{ Roots: lp.AnchorPool, Intermediates: intermediatePool, |