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