We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be0c457 commit 5490d70Copy full SHA for 5490d70
u_parrots.go
@@ -2993,7 +2993,9 @@ func generateRandomizedSpec(
2993
}
2994
2995
if r.FlipWeightedCoin(id.Weights.TLSVersMax_Set_VersionTLS13) {
2996
- p.TLSVersMin = VersionTLS12
+ // randomize min TLS version
2997
+ minTLSVersCandidates := []uint16{VersionTLS10, VersionTLS12}
2998
+ p.TLSVersMin = minTLSVersCandidates[r.Intn(len(minTLSVersCandidates))]
2999
p.TLSVersMax = VersionTLS13
3000
tls13ciphers := make([]uint16, len(defaultCipherSuitesTLS13))
3001
copy(tls13ciphers, defaultCipherSuitesTLS13)
0 commit comments