lazydocker/vendor/github.com/docker/go-connections/tlsconfig/certpool.go
Sebastiaan van Stijn 463ddfd6ee
go.mod: github.com/docker/go-connections v0.5.0
drops support for legacy Go versions, add support for TLS 1.3

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2024-07-15 11:05:26 +02:00

16 lines
373 B
Go

package tlsconfig
import (
"crypto/x509"
"runtime"
)
// SystemCertPool returns a copy of the system cert pool,
// returns an error if failed to load or empty pool on windows.
func SystemCertPool() (*x509.CertPool, error) {
certpool, err := x509.SystemCertPool()
if err != nil && runtime.GOOS == "windows" {
return x509.NewCertPool(), nil
}
return certpool, err
}