diff options
Diffstat (limited to 'llgo/third_party/gofrontend/libgo/go/math/rand/rand.go')
| -rw-r--r-- | llgo/third_party/gofrontend/libgo/go/math/rand/rand.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llgo/third_party/gofrontend/libgo/go/math/rand/rand.go b/llgo/third_party/gofrontend/libgo/go/math/rand/rand.go index 3ffb5c4e5c6..6360128e391 100644 --- a/llgo/third_party/gofrontend/libgo/go/math/rand/rand.go +++ b/llgo/third_party/gofrontend/libgo/go/math/rand/rand.go @@ -9,6 +9,9 @@ // sequence of values each time a program is run. Use the Seed function to // initialize the default Source if different behavior is required for each run. // The default Source is safe for concurrent use by multiple goroutines. +// +// For random numbers suitable for security-sensitive work, see the crypto/rand +// package. package rand import "sync" |

