git-lfs/httputil/certs_windows.go

9 lines
220 B
Go
Raw Normal View History

package httputil
import "crypto/x509"
func appendRootCAsForHostFromPlatform(pool *x509.CertPool, host string) *x509.CertPool {
// golang already supports Windows Certificate Store for self-signed certs
return pool
}