mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 21:07:41 +03:00
Add initialize seed func
This commit is contained in:
parent
e85528b42f
commit
2a0502dd66
1 changed files with 14 additions and 0 deletions
|
@ -1,8 +1,10 @@
|
|||
package random
|
||||
|
||||
import (
|
||||
"crypto/rand"
|
||||
"encoding/binary"
|
||||
"io"
|
||||
mRand "math/rand"
|
||||
"sync"
|
||||
|
||||
"github.com/sagernet/sing/common"
|
||||
|
@ -13,6 +15,18 @@ const (
|
|||
rngMask = rngMax - 1
|
||||
)
|
||||
|
||||
var initSeedOnce sync.Once
|
||||
|
||||
func InitializeSeed() {
|
||||
initSeedOnce.Do(initializeSeed)
|
||||
}
|
||||
|
||||
func initializeSeed() {
|
||||
var seed int64
|
||||
common.Must(binary.Read(rand.Reader, binary.LittleEndian, &seed))
|
||||
mRand.Seed(seed)
|
||||
}
|
||||
|
||||
type Source struct {
|
||||
io.Reader
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue