github.com/breml/rootcerts@v0.2.16/embedded/embedded.go (about)

     1  // Package embedded makes available the "Mozilla Included CA Certificate List"
     2  // without any side-effects (unlike package rootcerts).
     3  package embedded
     4  
     5  // MozillaCACertificatesPEM returns "Mozilla Included CA Certificate List"
     6  // (https://wiki.mozilla.org/CA/Included_Certificates) in PEM format.
     7  //
     8  // Use of these certificates is governed by Mozilla Public License 2.0
     9  // that can be found in the LICENSE.certificates file.
    10  func MozillaCACertificatesPEM() string {
    11  	return data
    12  }