支持设置根证书校验服务端

This commit is contained in:
ctlove0523 2021-01-12 22:23:50 +08:00
parent 425e9f1c5a
commit 38a986634c
1 changed files with 6 additions and 2 deletions

View File

@ -657,12 +657,16 @@ func (device *iotDevice) Init() bool {
if strings.Contains(device.Servers, "tls") || strings.Contains(device.Servers, "ssl") {
glog.Infof("server support tls connection")
if device.ServerCert != nil {
certPool:=x509.NewCertPool()
certPool := x509.NewCertPool()
certPool.AppendCertsFromPEM(device.ServerCert)
options.SetTLSConfig(&tls.Config{
RootCAs: certPool,
RootCAs: certPool,
InsecureSkipVerify: false,
})
} else {
options.SetTLSConfig(&tls.Config{
InsecureSkipVerify: true,
})
}
} else {
options.SetTLSConfig(&tls.Config{