Skip to content

Commit

Permalink
Update cipher_suites.go
Browse files Browse the repository at this point in the history
Signed-off-by: tritu <tri_tu@163.com>
  • Loading branch information
tritu authored Jul 23, 2024
1 parent 23de245 commit fd5e269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cipher_suites.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ var (
// and might not match those returned by this function.
func CipherSuites() []*CipherSuite {
return []*CipherSuite{
{TLS_CHACHA20_POLY1305_SHA256, "TLS_CHACHA20_POLY1305_SHA256", supportedOnlyTLS13, false},
{TLS_AES_128_GCM_SHA256, "TLS_AES_128_GCM_SHA256", supportedOnlyTLS13, false},
{TLS_AES_256_GCM_SHA384, "TLS_AES_256_GCM_SHA384", supportedOnlyTLS13, false},
{TLS_CHACHA20_POLY1305_SHA256, "TLS_CHACHA20_POLY1305_SHA256", supportedOnlyTLS13, false},

{TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA", supportedUpToTLS12, false},
{TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA", supportedUpToTLS12, false},
Expand Down

0 comments on commit fd5e269

Please sign in to comment.