mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
introduce a type for the stateless reset key (#3621)
This commit is contained in:
parent
b8447041bb
commit
8d496ebb5e
10 changed files with 35 additions and 27 deletions
|
@ -33,7 +33,7 @@ var _ = Describe("Packet Handler Map", func() {
|
|||
packetChan chan packetToRead
|
||||
|
||||
connIDLen int
|
||||
statelessResetKey []byte
|
||||
statelessResetKey *StatelessResetKey
|
||||
)
|
||||
|
||||
getPacketWithPacketType := func(connID protocol.ConnectionID, t protocol.PacketType, length protocol.ByteCount) []byte {
|
||||
|
@ -440,9 +440,9 @@ var _ = Describe("Packet Handler Map", func() {
|
|||
|
||||
Context("generating", func() {
|
||||
BeforeEach(func() {
|
||||
key := make([]byte, 32)
|
||||
rand.Read(key)
|
||||
statelessResetKey = key
|
||||
var key StatelessResetKey
|
||||
rand.Read(key[:])
|
||||
statelessResetKey = &key
|
||||
})
|
||||
|
||||
It("generates stateless reset tokens", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue