Skip to content

Commit

Permalink
Merge pull request mozilla#69 from mozilla/gdestuynder-patch-1
Browse files Browse the repository at this point in the history
Change Golang ordering
  • Loading branch information
jvehent committed Jun 1, 2015
2 parents 4534676 + e198f55 commit 758d6a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Server_Side_TLS.mediawiki
Original file line number Diff line number Diff line change
Expand Up @@ -564,12 +564,12 @@ The Go standard library supports TLS1.2 and a limited subset of ECDHE and GCM ci
MinVersion: tls.VersionTLS10,
PreferServerCipherSuites: true,
CipherSuites: []uint16{
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,
tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA,
tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,
tls.TLS_RSA_WITH_AES_128_CBC_SHA,
tls.TLS_RSA_WITH_AES_256_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,
Expand Down

0 comments on commit 758d6a3

Please sign in to comment.