1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-03 01:06:03 -04:00
v2fly/transport/internet/tls/config_other.go
2018-04-13 10:01:10 +02:00

22 lines
422 B
Go

// +build !windows
package tls
import "crypto/x509"
func (c *Config) GetCertPool() *x509.CertPool {
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
}