git-lfs/httputil/certs_windows.go
Steve Streeting c4bbd3724e Major refactor to pull things into config, httputil, tools
Mainly required to avoid cyclical dependencies when separating other things
2016-05-13 17:38:06 +01:00

9 lines
220 B
Go

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
}