Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Rust

Idiom #318 Cryptographically secure random number

Assign to the integer x a random number between 0 and 17 (inclusive), from a crypto secure random number generator.

use rand::prelude::*;
let mut rng = rand::thread_rng();
let x = rng.gen_range(0..18);

Any generator which implements https://rust-random.github.io/rand/rand/trait.CryptoRng.html is cryptographically secure.
import "crypto/rand"
import "math/big"
bi, err := rand.Int(rand.Reader, big.NewInt(18))
x := int(bi.Int64())

crypto/rand.Int works with big ints, and the secure RNG Reader.

New implementation...
< >
programming-idioms.org