switch from math/rand to math/rand/v2 (#5045)

* switch from math/rand to math/rand/v2

* switch away from golang.org/x/exp/rand
This commit is contained in:
Marten Seemann
2025-04-19 15:01:22 +08:00
committed by GitHub
parent c60438c528
commit 267cca773b
29 changed files with 168 additions and 162 deletions

View File

@@ -2,10 +2,9 @@ package handshake
import (
"bytes"
"crypto/rand"
"testing"
"golang.org/x/exp/rand"
"github.com/quic-go/quic-go/internal/protocol"
"github.com/stretchr/testify/require"
@@ -257,11 +256,10 @@ func BenchmarkInitialAEAD(b *testing.B) {
clientSealer, _ := NewInitialAEAD(connectionID, protocol.PerspectiveClient, protocol.Version1)
_, serverOpener := NewInitialAEAD(connectionID, protocol.PerspectiveServer, protocol.Version1)
r := rand.New(rand.NewSource(1))
packetData := make([]byte, 1200)
r.Read(packetData)
rand.Read(packetData)
hdr := make([]byte, 50)
r.Read(hdr)
rand.Read(hdr)
msg := clientSealer.Seal(nil, packetData, 42, hdr)
m, err := serverOpener.Open(nil, msg, 42, hdr)
if err != nil {
@@ -271,6 +269,7 @@ func BenchmarkInitialAEAD(b *testing.B) {
b.Fatal("decrypted data doesn't match")
}
b.ResetTimer()
b.Run("opening 100 bytes", func(b *testing.B) {
benchmarkOpen(b, serverOpener, clientSealer.Seal(nil, packetData[:100], 42, hdr), hdr)
})