(*tls.ClientHelloInfo, []Certificate)
| 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. |