mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 04:27:36 +03:00
crypto/tls: check and record godebugs more granularly
We should call Value as late as possible to allow programs to set GODEBUG with os.Setenv, and IncNonDefault only when (and every time) the GODEBUG has an effect on a connection (that we'd have regularly rejected). Change-Id: If7a1446de407db7ca2d904d41dda13558b684dda Reviewed-on: https://go-review.googlesource.com/c/go/+/544335 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Roland Shoemaker <roland@golang.org> Reviewed-by: David Chase <drchase@google.com> Auto-Submit: Filippo Valsorda <filippo@golang.org>
This commit is contained in:
parent
f20bc39fcb
commit
fef99935ac
6 changed files with 43 additions and 37 deletions
12
tls_test.go
12
tls_test.go
|
@ -1491,16 +1491,8 @@ func TestCipherSuites(t *testing.T) {
|
|||
t.Errorf("cipherSuitesPreferenceOrderNoAES is not the same size as cipherSuitesPreferenceOrder")
|
||||
}
|
||||
|
||||
// Check that disabled suites are at the end of the preference lists, and
|
||||
// that they are marked insecure.
|
||||
for i, id := range disabledCipherSuites {
|
||||
offset := len(cipherSuitesPreferenceOrder) - len(disabledCipherSuites)
|
||||
if cipherSuitesPreferenceOrder[offset+i] != id {
|
||||
t.Errorf("disabledCipherSuites[%d]: not at the end of cipherSuitesPreferenceOrder", i)
|
||||
}
|
||||
if cipherSuitesPreferenceOrderNoAES[offset+i] != id {
|
||||
t.Errorf("disabledCipherSuites[%d]: not at the end of cipherSuitesPreferenceOrderNoAES", i)
|
||||
}
|
||||
// Check that disabled suites are marked insecure.
|
||||
for id := range disabledCipherSuites {
|
||||
c := CipherSuiteByID(id)
|
||||
if c == nil {
|
||||
t.Errorf("%#04x: no CipherSuite entry", id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue