| 31 | const ccadb = "https://ccadb.my.salesforce-sites.com/mozilla/MozillaIntermediateCertsCSVReport" |
| 32 | |
| 33 | type intermediate struct { |
| 34 | Subject, Issuer string |
| 35 | PEM string |
| 36 | Hash [sha256.Size]byte |
| 37 | } |
| 38 | |
| 39 | func main() { |
| 40 | c := &http.Client{Timeout: 1 * time.Minute} |
nothing calls this directly
no outgoing calls
no test coverage detected