Add more context

This commit is contained in:
世界 2022-04-30 10:25:56 +08:00
parent 3a9adc8f84
commit 34cba35e3b
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
10 changed files with 45 additions and 17 deletions

View file

@ -2,6 +2,7 @@ package random
import (
"crypto/rand"
"encoding/binary"
"io"
"github.com/sagernet/sing/common"
@ -10,9 +11,37 @@ import (
var System = rand.Reader
func Blake3KeyedHash() io.Reader {
func Blake3KeyedHash() Source {
key := make([]byte, 32)
common.Must1(io.ReadFull(System, key))
h := blake3.New(1024, key)
return h.XOF()
return Source{h.XOF()}
}
const (
rngMax = 1 << 63
rngMask = rngMax - 1
)
type Source struct {
io.Reader
}
func (s Source) Int63() int64 {
return s.Int64() & rngMask
}
func (s Source) Int64() int64 {
var num int64
common.Must(binary.Read(s, binary.BigEndian, &num))
return num
}
func (s Source) Uint64() uint64 {
var num uint64
common.Must(binary.Read(s, binary.BigEndian, &num))
return num
}
func (s Source) Seed(int64) {
}