1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-05 19:44:32 -04:00
v2fly/transport/internet/tls/config_other.go

22 lines
422 B
Go
Raw Normal View History

2018-04-13 04:01:10 -04:00
// +build !windows
package tls
import "crypto/x509"
2018-04-17 17:33:39 -04:00
func (c *Config) getCertPool() *x509.CertPool {
2018-04-13 04:01:10 -04:00
pool, err := x509.SystemCertPool()
if err != nil {
newError("failed to get system cert pool.").Base(err).WriteToLog()
return nil
}
if pool != nil {
for _, cert := range c.Certificate {
if cert.Usage == Certificate_AUTHORITY_VERIFY {
pool.AppendCertsFromPEM(cert.Certificate)
}
}
}
return pool
}