Merge pull request #2512 from vcptr/nilciphers

let crypto/tls choose the proper ciphers
pull/2513/head
Nicholas Wang 5 years ago committed by GitHub
commit 3cf16bf7df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save