2016-01-30 01:00:08 +00:00
|
|
|
package lib
|
|
|
|
|
|
|
|
import (
|
2016-05-03 06:52:37 +00:00
|
|
|
crand "crypto/rand"
|
|
|
|
"math"
|
|
|
|
"math/big"
|
2016-01-30 01:00:08 +00:00
|
|
|
"math/rand"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
once sync.Once
|
2016-05-03 06:52:37 +00:00
|
|
|
|
|
|
|
// SeededSecurely is set to true if a cryptographically secure seed
|
|
|
|
// was used to initialize rand. When false, the start time is used
|
|
|
|
// as a seed.
|
|
|
|
SeededSecurely bool
|
2016-01-30 01:00:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// SeedMathRand provides weak, but guaranteed seeding, which is better than
|
|
|
|
// running with Go's default seed of 1. A call to SeedMathRand() is expected
|
|
|
|
// to be called via init(), but never a second time.
|
|
|
|
func SeedMathRand() {
|
2016-05-03 06:52:37 +00:00
|
|
|
once.Do(func() {
|
|
|
|
n, err := crand.Int(crand.Reader, big.NewInt(math.MaxInt64))
|
|
|
|
if err != nil {
|
|
|
|
rand.Seed(time.Now().UTC().UnixNano())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
rand.Seed(n.Int64())
|
|
|
|
SeededSecurely = true
|
|
|
|
})
|
2016-01-30 01:00:08 +00:00
|
|
|
}
|