certpool_go17.go 390 B

123456789101112131415161718
  1. // +build go1.7
  2. package tlsconfig
  3. import (
  4. "crypto/x509"
  5. "runtime"
  6. )
  7. // SystemCertPool returns a copy of the system cert pool,
  8. // returns an error if failed to load or empty pool on windows.
  9. func SystemCertPool() (*x509.CertPool, error) {
  10. certpool, err := x509.SystemCertPool()
  11. if err != nil && runtime.GOOS == "windows" {
  12. return x509.NewCertPool(), nil
  13. }
  14. return certpool, err
  15. }