forked from moby/moby
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BACKPORT: Merge system certificate pool with custom certificates
Upstream reference: moby#27918 Upstream reference: moby#12756 Signed-off-by: Antonio Murdaca <[email protected]>
- Loading branch information
Showing
6 changed files
with
48 additions
and
138 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
vendor/src/github.com/docker/go-connections/tlsconfig/certpool_go17.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// +build go1.7 | ||
|
||
package tlsconfig | ||
|
||
import ( | ||
"crypto/x509" | ||
"runtime" | ||
|
||
"github.com/Sirupsen/logrus" | ||
) | ||
|
||
// SystemCertPool returns a copy of the system cert pool, | ||
// returns an error if failed to load or empty pool on windows. | ||
func SystemCertPool() (*x509.CertPool, error) { | ||
certpool, err := x509.SystemCertPool() | ||
if err != nil && runtime.GOOS == "windows" { | ||
logrus.Warnf("Unable to use system certificate pool: %v", err) | ||
return x509.NewCertPool(), nil | ||
} | ||
return certpool, err | ||
} |
16 changes: 16 additions & 0 deletions
16
vendor/src/github.com/docker/go-connections/tlsconfig/certpool_other.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// +build !go1.7 | ||
|
||
package tlsconfig | ||
|
||
import ( | ||
"crypto/x509" | ||
|
||
"github.com/Sirupsen/logrus" | ||
) | ||
|
||
// SystemCertPool returns an new empty cert pool, | ||
// accessing system cert pool is supported in go 1.7 | ||
func SystemCertPool() (*x509.CertPool, error) { | ||
logrus.Warn("Unable to use system certificate pool: requires building with go 1.7 or later") | ||
return x509.NewCertPool(), nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters