Source File
crypto.go
Belonging Package
github.com/tetratelabs/wazero/internal/platform
package platformimport ()// seed is a fixed seed value for NewFakeRandSource.//// Trivia: While arbitrary, 42 was chosen as it is the "Ultimate Answer" in// the Douglas Adams novel "The Hitchhiker's Guide to the Galaxy."const seed = int64(42)// NewFakeRandSource returns a deterministic source of random values.func () io.Reader {return rand.New(rand.NewSource(seed))}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |