mirror of
https://github.com/containers/skopeo.git
synced 2025-08-24 09:08:31 +00:00
Required to update those dependencies in containers/image. See https://github.com/containers/image/pull/446. Updated by mitr@redhat.com to vendor from containers/image master again, which brought in a few more dependency updates. Signed-off-by: Max Goltzsche <max.goltzsche@gmail.com> Signed-off-by: Miloslav Trmač <mitr@redhat.com>
14 lines
249 B
Go
14 lines
249 B
Go
// +build !go1.7
|
|
|
|
package tlsconfig
|
|
|
|
import (
|
|
"crypto/x509"
|
|
)
|
|
|
|
// SystemCertPool returns an new empty cert pool,
|
|
// accessing system cert pool is supported in go 1.7
|
|
func SystemCertPool() (*x509.CertPool, error) {
|
|
return x509.NewCertPool(), nil
|
|
}
|