CertificateSelector is a type which can select a certificate to use given multiple choices.
| 1349 | |
| 1350 | // CertificateSelector is a type which can select a certificate to use given multiple choices. |
| 1351 | type CertificateSelector interface { |
| 1352 | SelectCertificate(*tls.ClientHelloInfo, []Certificate) (Certificate, error) |
| 1353 | } |
| 1354 | |
| 1355 | // OCSPConfig configures how OCSP is handled. |
| 1356 | type OCSPConfig struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…