mozilla.go 330 B

123456789101112131415161718
  1. // Code generated by 'make update_certificates'. DO NOT EDIT.
  2. package certificate
  3. import (
  4. "crypto/x509"
  5. _ "embed"
  6. )
  7. //go:embed mozilla.pem
  8. var mozillaIncludedPEM string
  9. var mozillaIncluded *x509.CertPool
  10. func init() {
  11. mozillaIncluded = x509.NewCertPool()
  12. mozillaIncluded.AppendCertsFromPEM([]byte(mozillaIncludedPEM))
  13. }