1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-17 13:05:24 +00:00
v2fly/transport/internet/tls/config_windows.go

15 lines
237 B
Go
Raw Normal View History

2021-10-28 10:34:19 +00:00
//go:build windows
// +build windows
2018-04-13 08:01:10 +00:00
package tls
import "crypto/x509"
func (c *Config) getCertPool() (*x509.CertPool, error) {
if c.DisableSystemRoot {
return c.loadSelfCertPool(Certificate_AUTHORITY_VERIFY)
}
2019-02-27 13:51:51 +00:00
return nil, nil
2018-04-13 08:01:10 +00:00
}