mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
48 lines
676 B
Go
48 lines
676 B
Go
package random
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"io"
|
|
"sync"
|
|
|
|
"github.com/sagernet/sing/common"
|
|
)
|
|
|
|
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) {
|
|
}
|
|
|
|
type SyncReader struct {
|
|
io.Reader
|
|
sync.Mutex
|
|
}
|
|
|
|
func (r *SyncReader) Read(p []byte) (n int, err error) {
|
|
r.Lock()
|
|
defer r.Unlock()
|
|
return r.Reader.Read(p)
|
|
}
|