mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 13:27:39 +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
|
package random
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"crypto/rand"
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"io"
|
"io"
|
||||||
|
mRand "math/rand"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"github.com/sagernet/sing/common"
|
"github.com/sagernet/sing/common"
|
||||||
|
@ -13,6 +15,18 @@ const (
|
||||||
rngMask = rngMax - 1
|
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 {
|
type Source struct {
|
||||||
io.Reader
|
io.Reader
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue