forked from hashicorp/consul
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`SeededSecurely` is present if someone or something wants to query the way the library was seeded. Obtained from: nomad
- Loading branch information
Showing
1 changed file
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,34 @@ | ||
package lib | ||
|
||
import ( | ||
crand "crypto/rand" | ||
"math" | ||
"math/big" | ||
"math/rand" | ||
"sync" | ||
"time" | ||
) | ||
|
||
var ( | ||
once sync.Once | ||
|
||
// 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 | ||
) | ||
|
||
// 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() { | ||
once.Do(func() { rand.Seed(time.Now().UTC().UnixNano()) }) | ||
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 | ||
}) | ||
} |