-- import "github.com/wadey/cryptorand"
Package cryptorand provides a math/rand.Source64 implementation of crypto/rand
r := rand.New(cryptorand.Source)
fmt.Println(r.Float64() == r.Float64())
// Output:
// false
var Source rand.Source
Source is a math/rand.Source64 backed by crypto/rand. Calling Seed() will result in a panic.
func NewSource(rand io.Reader) rand.Source
NewSource returns a new rand.Source64 backed by the given random source. Calling Seed() will result in a panic.