mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-02 23:47:07 -05:00
tls use crypto std cipher suites
This commit is contained in:
parent
c5842b91e6
commit
e62e6608e1
@ -187,23 +187,10 @@ func (c *Config) GetTLSConfig(opts ...Option) *tls.Config {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if !c.AllowInsecureCiphers && len(config.CipherSuites) == 0 {
|
if !c.AllowInsecureCiphers && len(config.CipherSuites) == 0 {
|
||||||
config.CipherSuites = []uint16{
|
// use tls cipher suites from cryto/tls
|
||||||
tls.TLS_AES_128_GCM_SHA256,
|
config.CipherSuites = []uint16{}
|
||||||
tls.TLS_AES_256_GCM_SHA384,
|
for _, s := range tls.CipherSuites() {
|
||||||
tls.TLS_CHACHA20_POLY1305_SHA256,
|
config.CipherSuites = append(config.CipherSuites, s.ID)
|
||||||
|
|
||||||
tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
|
|
||||||
tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,
|
|
||||||
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
|
|
||||||
tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
|
|
||||||
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
|
|
||||||
tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
|
|
||||||
tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,
|
|
||||||
tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
|
|
||||||
tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,
|
|
||||||
tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,
|
|
||||||
tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
|
|
||||||
tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user