()
| 76 | } |
| 77 | |
| 78 | func makeClientTLSConfig() *tls.Config { |
| 79 | return &tls.Config{ |
| 80 | MinVersion: tls.VersionTLS12, |
| 81 | Certificates: makeClientCertificates(), |
| 82 | RootCAs: makeCertPool(), |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | func makeServerTLSConfig() *tls.Config { |
| 87 | return &tls.Config{ |
no test coverage detected