Files
Archive/sing-box/common/certificate/mozilla.go
T
2026-04-12 21:03:21 +02:00

19 lines
330 B
Go

// Code generated by 'make update_certificates'. DO NOT EDIT.
package certificate
import (
"crypto/x509"
_ "embed"
)
//go:embed mozilla.pem
var mozillaIncludedPEM string
var mozillaIncluded *x509.CertPool
func init() {
mozillaIncluded = x509.NewCertPool()
mozillaIncluded.AppendCertsFromPEM([]byte(mozillaIncludedPEM))
}