mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-04-13 20:28:32 +10:00
19 lines
324 B
Go
19 lines
324 B
Go
// Code generated by 'make update_certificates'. DO NOT EDIT.
|
|
|
|
package certificate
|
|
|
|
import (
|
|
"crypto/x509"
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed chrome.pem
|
|
var chromeIncludedPEM string
|
|
|
|
var chromeIncluded *x509.CertPool
|
|
|
|
func init() {
|
|
chromeIncluded = x509.NewCertPool()
|
|
chromeIncluded.AppendCertsFromPEM([]byte(chromeIncludedPEM))
|
|
}
|