Files
buildx/vendor/github.com/docker/go-connections/tlsconfig/certpool.go
T

13 lines
251 B
Go

package tlsconfig
import "crypto/x509"
// SystemCertPool returns a copy of the system cert pool.
//
// Deprecated: use [x509.SystemCertPool] instead.
//
//go:fix inline
func SystemCertPool() (*x509.CertPool, error) {
return x509.SystemCertPool()
}