func crypto/x509.NewCertPool

10 uses

	crypto/x509 (current package)
		cert_pool.go#L64: func NewCertPool() *CertPool {
		root_unix.go#L33: 	roots := NewCertPool()

	crypto/tls
		common.go#L1885: 			opts.Intermediates = x509.NewCertPool()
		handshake_client.go#L1129: 				Intermediates: x509.NewCertPool(),
		handshake_client.go#L1152: 			Intermediates: x509.NewCertPool(),
		handshake_server.go#L971: 			Intermediates: x509.NewCertPool(),

	github.com/jackc/pgx/v5/pgconn
		config.go#L757: 			caCertPool = x509.NewCertPool()
		config.go#L815: 				Intermediates: x509.NewCertPool(),

	google.golang.org/grpc/credentials
		tls.go#L286: 	cp := x509.NewCertPool()

	net/http/httptest
		server.go#L191: 	certpool := x509.NewCertPool()