BasicOIDC/src/utils/string_utils.rs

12 lines
264 B
Rust
Raw Normal View History

2022-04-07 16:59:48 +00:00
use rand::distributions::Alphanumeric;
use rand::Rng;
/// Generate a random string of a given size
pub fn rand_str(len: usize) -> String {
rand::thread_rng()
.sample_iter(&Alphanumeric)
.map(char::from)
.take(len)
.collect()
}