mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 07:11:01 +00:00
drops support for legacy Go versions, add support for TLS 1.3 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
16 lines
373 B
Go
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
|
|
}
|