Skip to content

Commit

Permalink
feat: bump default TLS version to TLS v1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kruskall committed May 8, 2023
1 parent 28e3802 commit 1d0588a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions transport/tlscommon/versions_default.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const (

// TLSVersionDefaultMin is the minimal default TLS version that is
// enabled by default. TLSVersionDefaultMin is >= TLSVersionMin
TLSVersionDefaultMin = TLSVersion11
TLSVersionDefaultMin = TLSVersion12

// TLSVersionDefaultMax is the max default TLS version that
// is enabled by default.
Expand All @@ -47,7 +47,6 @@ const (

// TLSDefaultVersions list of versions of TLS we should support.
var TLSDefaultVersions = []TLSVersion{
TLSVersion11,
TLSVersion12,
TLSVersion13,
}
Expand Down

0 comments on commit 1d0588a

Please sign in to comment.