blob: 000da188df28e9125be92f870bc91852eef511c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// -*- coding: utf-8 -*-
//
// disktest - Storage tester
//
// Copyright 2020-2024 Michael Büsch <m@bues.ch>
//
// Licensed under the Apache License version 2.0
// or the MIT license, at your option.
// SPDX-License-Identifier: Apache-2.0 OR MIT
//
use rand::distributions::Alphanumeric;
use rand::{thread_rng, Rng};
/// Generate a new alphanumeric truly random seed.
///
/// length: The number of ASCII characters to return.
pub fn gen_seed_string(length: usize) -> String {
let rng = thread_rng();
rng.sample_iter(Alphanumeric)
.take(length)
.map(char::from)
.collect()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_gen() {
// Check returned ASCII string length.
let seed = gen_seed_string(42);
assert_eq!(seed.len(), 42);
assert_eq!(seed.chars().count(), 42);
}
}
// vim: ts=4 sw=4 expandtab
|