Browse Source

Modify entropy information

pull/6/head
gilardh 4 years ago
parent
commit
3aa39502c9
  1. 3
      cli/src/main.rs

3
cli/src/main.rs

@ -115,7 +115,8 @@ fn main() {
// If the user hasn't specified any, read from the stdin
if matches.value_of("entropy").is_none() {
// Read from stdin
println!("Provide additional entropy for generating random numbers. Type in a string of random characters, press [ENTER] when done");
println!("Provide additional entropy for generating random numbers.
Type in a string of random characters, press [ENTER] when done.");
let mut buffer = String::new();
let stdin = io::stdin();
stdin.lock().read_line(&mut buffer).unwrap();

Loading…
Cancel
Save