mirror of https://github.com/tinygo-org/tinygo.git
wasmstm32webassemblymicrocontrollerarmavrspiwasiadafruitarduinocircuitplayground-expressgpioi2cllvmmicrobitnrf51nrf52nrf52840samd21tinygo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
564 B
25 lines
564 B
3 years ago
|
package main
|
||
|
|
||
|
import "crypto/rand"
|
||
|
|
||
|
// TODO: make this a test in the crypto/rand package.
|
||
|
|
||
|
func main() {
|
||
|
buf := make([]byte, 500)
|
||
|
n, err := rand.Read(buf)
|
||
|
if n != len(buf) || err != nil {
|
||
|
println("could not read random numbers:", err)
|
||
|
}
|
||
|
|
||
|
// Very simple test that random numbers are at least somewhat random.
|
||
|
sum := 0
|
||
|
for _, b := range buf {
|
||
|
sum += int(b)
|
||
|
}
|
||
|
if sum < 95*len(buf) || sum > 159*len(buf) {
|
||
|
println("random numbers don't seem that random, the average byte is", sum/len(buf))
|
||
|
} else {
|
||
|
println("random number check was successful")
|
||
|
}
|
||
|
}
|