let crypto/tls choose the proper ciphers

pull/2531/head
vcptr 2020-05-31 11:04:30 +08:00
parent e62e6608e1
commit 524b2aca56
1 changed files with 2 additions and 5 deletions

View File

@ -187,11 +187,8 @@ func (c *Config) GetTLSConfig(opts ...Option) *tls.Config {
} }
if !c.AllowInsecureCiphers && len(config.CipherSuites) == 0 { if !c.AllowInsecureCiphers && len(config.CipherSuites) == 0 {
// use tls cipher suites from cryto/tls // crypto/tls will use the proper ciphers
config.CipherSuites = []uint16{} config.CipherSuites = nil
for _, s := range tls.CipherSuites() {
config.CipherSuites = append(config.CipherSuites, s.ID)
}
} }
config.InsecureSkipVerify = c.AllowInsecure config.InsecureSkipVerify = c.AllowInsecure