-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
treewide: upgrade to Go 1.23.2 (#3417)
* treewide: upgrade to Go 1.23.2 * deps: update golangci/golangci-lint to v1.61.0 * deps: tidy all modules --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: edgelessci <[email protected]>
- Loading branch information
1 parent
9ef5b70
commit 843d9bc
Showing
11 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
--- src/crypto/tls/common.go | ||
+++ src/crypto/tls/common.go | ||
@@ -62,7 +62,7 @@ | ||
maxCiphertext = 16384 + 2048 // maximum ciphertext payload length | ||
maxCiphertextTLS13 = 16384 + 256 // maximum ciphertext length in TLS 1.3 | ||
recordHeaderLen = 5 // record header length | ||
- maxHandshake = 65536 // maximum handshake we support (protocol max is 16 MB) | ||
+ maxHandshake = 262144 // maximum handshake we support (protocol max is 16 MB) | ||
maxUselessRecords = 16 // maximum number of consecutive non-advancing records | ||
@@ -64,7 +64,7 @@ const ( | ||
maxCiphertext = 16384 + 2048 // maximum ciphertext payload length | ||
maxCiphertextTLS13 = 16384 + 256 // maximum ciphertext length in TLS 1.3 | ||
recordHeaderLen = 5 // record header length | ||
- maxHandshake = 65536 // maximum handshake we support (protocol max is 16 MB) | ||
+ maxHandshake = 262144 // maximum handshake we support (protocol max is 16 MB) | ||
maxHandshakeCertificateMsg = 262144 // maximum certificate message size (256 KiB) | ||
maxUselessRecords = 16 // maximum number of consecutive non-advancing records | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
go 1.22.7 | ||
go 1.23.2 | ||
|
||
toolchain go1.22.7 | ||
toolchain go1.23.2 | ||
|
||
use ( | ||
. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters