()
| 52 | ) |
| 53 | |
| 54 | func makeCertPool() *x509.CertPool { |
| 55 | certpool := x509.NewCertPool() |
| 56 | certpool.AppendCertsFromPEM(RootCA) |
| 57 | return certpool |
| 58 | } |
| 59 | |
| 60 | func makeClientCertificates() []tls.Certificate { |
| 61 | return []tls.Certificate{ |
no outgoing calls
no test coverage detected