sync: merge changes from go 1.24.0

This commit is contained in:
Mingye Chen 2025-03-01 00:13:08 -07:00
commit a99feacec2
50 changed files with 2505 additions and 2734 deletions

View file

@ -9,6 +9,7 @@ import (
"testing"
circlPki "github.com/cloudflare/circl/pki"
"github.com/refraction-networking/utls/internal/fips140tls"
)
func TestSignatureSelection(t *testing.T) {
@ -59,6 +60,11 @@ func TestSignatureSelection(t *testing.T) {
}
for testNo, test := range tests {
if fips140tls.Required() && (test.expectedHash == crypto.SHA1 || test.expectedSigAlg == Ed25519) {
t.Logf("skipping test[%d] - not compatible with TLS FIPS mode", testNo)
continue
}
sigAlg, err := selectSignatureScheme(test.tlsVersion, test.cert, test.peerSigAlgs)
if err != nil {
t.Errorf("test[%d]: unexpected selectSignatureScheme error: %v", testNo, err)