(conn tls.ConnectionState, cfg RevocationOptions)
| 262 | } |
| 263 | |
| 264 | func checkRevocation(conn tls.ConnectionState, cfg RevocationOptions) error { |
| 265 | return checkChainRevocation(conn.VerifiedChains, cfg) |
| 266 | } |
| 267 | |
| 268 | func TestVerifyCrl(t *testing.T) { |
| 269 | tamperedSignature := loadCRL(t, testdata.Path("crl/1.crl")) |
no test coverage detected