mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
add a Transport config option for the key used to encrypt tokens (#4066)
* add a Transport config option for the key used to encrypt tokens * handshake: remove unused error return values
This commit is contained in:
parent
37a3c417a7
commit
862e64c7b9
9 changed files with 78 additions and 85 deletions
|
@ -2,24 +2,22 @@ package tokens
|
|||
|
||||
import (
|
||||
"encoding/binary"
|
||||
"math/rand"
|
||||
"net"
|
||||
"time"
|
||||
|
||||
"github.com/quic-go/quic-go"
|
||||
"github.com/quic-go/quic-go/internal/handshake"
|
||||
"github.com/quic-go/quic-go/internal/protocol"
|
||||
)
|
||||
|
||||
func Fuzz(data []byte) int {
|
||||
if len(data) < 8 {
|
||||
if len(data) < 32 {
|
||||
return -1
|
||||
}
|
||||
seed := binary.BigEndian.Uint64(data[:8])
|
||||
data = data[8:]
|
||||
tg, err := handshake.NewTokenGenerator(rand.New(rand.NewSource(int64(seed))))
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
var key quic.TokenGeneratorKey
|
||||
copy(key[:], data[:32])
|
||||
data = data[32:]
|
||||
tg := handshake.NewTokenGenerator(key)
|
||||
if len(data) < 1 {
|
||||
return -1
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue