Add Chrome Root Store certificate option

Adds `chrome` as a new certificate store option alongside `mozilla`.
Both stores filter out China-based CA certificates.
This commit is contained in:
世界
2025-12-21 15:13:24 +08:00
parent 0d8c7a9c5d
commit cba18635c8
6 changed files with 2934 additions and 9 deletions

View File

@@ -3,5 +3,6 @@ package constant
const (
CertificateStoreSystem = "system"
CertificateStoreMozilla = "mozilla"
CertificateStoreChrome = "chrome"
CertificateStoreNone = "none"
)