Skip to content

Commit

Permalink
Merge pull request xcat2#59 from xcat2/ciphers
Browse files Browse the repository at this point in the history
Remove RC4 from ciphers suites for goconserver
  • Loading branch information
gurevichmark authored Sep 16, 2019
2 parents d26f0bf + 2a45078 commit 751782b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions common/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,14 @@ var (
CIPHER_SUITES = []uint16{
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
tls.TLS_RSA_WITH_RC4_128_SHA,
tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA,
tls.TLS_RSA_WITH_AES_128_CBC_SHA,
tls.TLS_RSA_WITH_AES_256_CBC_SHA,
tls.TLS_RSA_WITH_AES_128_CBC_SHA256,
tls.TLS_RSA_WITH_AES_128_GCM_SHA256,
tls.TLS_RSA_WITH_AES_256_GCM_SHA384,
tls.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA,
tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,
tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_RC4_128_SHA,
tls.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
Expand Down

0 comments on commit 751782b

Please sign in to comment.