certpool_other.go 249 B

12345678910111213
  1. // +build !go1.7
  2. package tlsconfig
  3. import (
  4. "crypto/x509"
  5. )
  6. // SystemCertPool returns an new empty cert pool,
  7. // accessing system cert pool is supported in go 1.7
  8. func SystemCertPool() (*x509.CertPool, error) {
  9. return x509.NewCertPool(), nil
  10. }