-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from stapelberg/embedded
Make available the CA certificates via separate package
- Loading branch information
Showing
4 changed files
with
19 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Package embedded makes available the "Mozilla Included CA Certificate List" | ||
// without any side-effects (unlike package rootcerts). | ||
package embedded | ||
|
||
// MozillaCACertificatesPEM returns "Mozilla Included CA Certificate List" | ||
// (https://wiki.mozilla.org/CA/Included_Certificates) in PEM format. | ||
// | ||
// Use of these certificates is governed by Mozilla Public License 2.0 | ||
// that can be found in the LICENSE.certificates file. | ||
func MozillaCACertificatesPEM() string { | ||
return data | ||
} |
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