rand
2 分钟阅读
Package rand implements a cryptographically secure random number generator.
Package rand 实现了一个密码安全随机数生成器。
常量
This section is empty.
变量
|
|
Reader is a global, shared instance of a cryptographically secure random number generator.
Reader 是一个密码安全随机数生成器的全局共享实例。
On Linux, FreeBSD, Dragonfly and Solaris, Reader uses getrandom(2) if available, /dev/urandom otherwise. On OpenBSD and macOS, Reader uses getentropy(2). On other Unix-like systems, Reader reads from /dev/urandom. On Windows systems, Reader uses the RtlGenRandom API. On Wasm, Reader uses the Web Crypto API.
在 Linux、FreeBSD、Dragonfly 和 Solaris 上,Reader 在可用时使用 getrandom(2),否则使用 /dev/urandom。在 OpenBSD 和 macOS 上,Reader 使用 getentropy(2)。在其他类 Unix 系统上,Reader 从 /dev/urandom 读取。在 Windows 系统上,Reader 使用 RtlGenRandom API。在 Wasm 上,Reader 使用 Web Crypto API。
函数
func Int
|
|
Int 返回 [0, max) 中的均匀随机值。如果 max <= 0,则会引发 panic。
func Prime
|
|
Prime returns a number of the given bit length that is prime with high probability. Prime will return error for any error returned by rand.Read or if bits < 2.
Prime 返回给定位长的数字,该数字很可能是素数。对于 rand.Read 返回的任何错误或 bits < 2,Prime 将返回错误。
func Read
|
|
Read is a helper function that calls Reader.Read using io.ReadFull. On return, n == len(b) if and only if err == nil.
Read 是一个帮助函数,它使用 io.ReadFull 调用 Reader.Read。返回时,当且仅当 err == nil 时,n == len(b)。
Read Example
|
|
func Text <- 1.24.0
|
|
Text returns a cryptographically random string using the standard RFC 4648 base32 alphabet for use when a secret string, token, password, or other text is needed. The result contains at least 128 bits of randomness, enough to prevent brute force guessing attacks and to make the likelihood of collisions vanishingly small. A future version may return longer texts as needed to maintain those properties.
类型
This section is empty.