mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
sync: merge changes from go 1.24.0
This commit is contained in:
commit
a99feacec2
50 changed files with 2505 additions and 2734 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue