(t *testing.T, path string)
| 254 | } |
| 255 | |
| 256 | func loadCRL(t *testing.T, path string) *CRL { |
| 257 | crl, err := ReadCRLFile(path) |
| 258 | if err != nil { |
| 259 | t.Fatalf("ReadCRLFile(%v) failed err = %v", path, err) |
| 260 | } |
| 261 | return crl |
| 262 | } |
| 263 | |
| 264 | func checkRevocation(conn tls.ConnectionState, cfg RevocationOptions) error { |
| 265 | return checkChainRevocation(conn.VerifiedChains, cfg) |
no test coverage detected