terraform/vendor/github.com/hashicorp/go-rootcerts
Radek Simko 1feb7717a8
vendor: github.com/hashicorp/go-rootcerts@v1.0.0
go get github.com/hashicorp/go-rootcerts@v1.0.0
go mod tidy
go mod vendor
2019-02-21 08:54:14 +00:00
..
.travis.yml vendor: update to latest github.com/zclconf/go-cty 2018-10-16 19:14:11 -07:00
LICENSE vendor: add go-rootcerts 2016-05-03 09:42:50 -05:00
Makefile vendor: add go-rootcerts 2016-05-03 09:42:50 -05:00
README.md vendor: add go-rootcerts 2016-05-03 09:42:50 -05:00
doc.go vendor: add go-rootcerts 2016-05-03 09:42:50 -05:00
go.mod vendor: github.com/hashicorp/go-rootcerts@v1.0.0 2019-02-21 08:54:14 +00:00
go.sum vendor: github.com/hashicorp/go-rootcerts@v1.0.0 2019-02-21 08:54:14 +00:00
rootcerts.go vendor: add go-rootcerts 2016-05-03 09:42:50 -05:00
rootcerts_base.go vendor: add go-rootcerts 2016-05-03 09:42:50 -05:00
rootcerts_darwin.go vendor: add go-rootcerts 2016-05-03 09:42:50 -05:00

README.md

rootcerts

Functions for loading root certificates for TLS connections.


Go's standard library crypto/tls provides a common mechanism for configuring TLS connections in tls.Config. The RootCAs field on this struct is a pool of certificates for the client to use as a trust store when verifying server certificates.

This library contains utility functions for loading certificates destined for that field, as well as one other important thing:

When the RootCAs field is nil, the standard library attempts to load the host's root CA set. This behavior is OS-specific, and the Darwin implementation contains a bug that prevents trusted certificates from the System and Login keychains from being loaded. This library contains Darwin-specific behavior that works around that bug.

Example Usage

Here's a snippet demonstrating how this library is meant to be used:

func httpClient() (*http.Client, error)
	tlsConfig := &tls.Config{}
	err := rootcerts.ConfigureTLS(tlsConfig, &rootcerts.Config{
		CAFile: os.Getenv("MYAPP_CAFILE"),
		CAPath: os.Getenv("MYAPP_CAPATH"),
	})
	if err != nil {
		return nil, err
	}
	c := cleanhttp.DefaultClient()
	t := cleanhttp.DefaultTransport()
	t.TLSClientConfig = tlsConfig
	c.Transport = t
	return c, nil
}