mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-04-11 17:47:20 +10:00
Adds `chrome` as a new certificate store option alongside `mozilla`. Both stores filter out China-based CA certificates.
9 lines
171 B
Go
9 lines
171 B
Go
package constant
|
|
|
|
const (
|
|
CertificateStoreSystem = "system"
|
|
CertificateStoreMozilla = "mozilla"
|
|
CertificateStoreChrome = "chrome"
|
|
CertificateStoreNone = "none"
|
|
)
|