mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
archive/zip, crypto/tls: use rand.Read instead of casting ints to bytes
Makes tests run ~1ms faster. Change-Id: Ida509952469540280996d2bd9266724829e53c91 Reviewed-on: https://go-review.googlesource.com/47359 Reviewed-by: Filippo Valsorda <hi@filippo.io> Run-TryBot: Filippo Valsorda <hi@filippo.io> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
fd917e14e0
commit
90f8fc90bd
1 changed files with 2 additions and 2 deletions
|
@ -98,8 +98,8 @@ func TestFuzz(t *testing.T) {
|
|||
|
||||
func randomBytes(n int, rand *rand.Rand) []byte {
|
||||
r := make([]byte, n)
|
||||
for i := 0; i < n; i++ {
|
||||
r[i] = byte(rand.Int31())
|
||||
if _, err := rand.Read(r); err != nil {
|
||||
panic("rand.Read failed: " + err.Error())
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue