sing/common/random/seed_go119.go
2023-02-07 14:38:19 +08:00

25 lines
397 B
Go

//go:build !go1.20
package random
import (
"crypto/rand"
"encoding/binary"
mRand "math/rand"
"sync"
"github.com/sagernet/sing/common"
)
var initSeedOnce sync.Once
func InitializeSeed() {
initSeedOnce.Do(initializeSeed)
}
func initializeSeed() {
var seed int64
common.Must(binary.Read(rand.Reader, binary.LittleEndian, &seed))
//goland:noinspection GoDeprecation
mRand.Seed(seed)
}