@@ -17,7 +17,6 @@ import (
17
17
C "github.com/metacubex/mihomo/constant"
18
18
)
19
19
20
- var trustCerts []* x509.Certificate
21
20
var globalCertPool * x509.CertPool
22
21
var mutex sync.RWMutex
23
22
var errNotMatch = errors .New ("certificate fingerprints do not match" )
@@ -30,11 +29,19 @@ var DisableSystemCa, _ = strconv.ParseBool(os.Getenv("DISABLE_SYSTEM_CA"))
30
29
func AddCertificate (certificate string ) error {
31
30
mutex .Lock ()
32
31
defer mutex .Unlock ()
32
+
33
33
if certificate == "" {
34
34
return fmt .Errorf ("certificate is empty" )
35
35
}
36
- if cert , err := x509 .ParseCertificate ([]byte (certificate )); err == nil {
37
- trustCerts = append (trustCerts , cert )
36
+
37
+ if globalCertPool == nil {
38
+ initializeCertPool ()
39
+ }
40
+
41
+ if globalCertPool .AppendCertsFromPEM ([]byte (certificate )) {
42
+ return nil
43
+ } else if cert , err := x509 .ParseCertificate ([]byte (certificate )); err == nil {
44
+ globalCertPool .AddCert (cert )
38
45
return nil
39
46
} else {
40
47
return fmt .Errorf ("add certificate failed" )
@@ -51,9 +58,6 @@ func initializeCertPool() {
51
58
globalCertPool = x509 .NewCertPool ()
52
59
}
53
60
}
54
- for _ , cert := range trustCerts {
55
- globalCertPool .AddCert (cert )
56
- }
57
61
if ! DisableEmbedCa {
58
62
globalCertPool .AppendCertsFromPEM (_CaCertificates )
59
63
}
@@ -62,7 +66,6 @@ func initializeCertPool() {
62
66
func ResetCertificate () {
63
67
mutex .Lock ()
64
68
defer mutex .Unlock ()
65
- trustCerts = nil
66
69
initializeCertPool ()
67
70
}
68
71
0 commit comments