Browse Source

prints++

fix-typo
Coin de Gamma 3 months ago
parent
commit
e4d2217d6e
  1. 6
      src/main.rs

6
src/main.rs

@ -87,14 +87,14 @@ impl MPS {
} }
fn prompt_new_password() -> io::Result<String> { fn prompt_new_password() -> io::Result<String> {
print!("Enter passphrase for storage: "); print!("Enter passphrase: ");
io::stdout().flush()?; io::stdout().flush()?;
let ps = rpassword::read_password()?; let ps = rpassword::read_password()?;
if ps.len() < 8 { if ps.len() < 8 {
return Err(io::Error::new(io::ErrorKind::InvalidInput, "Passphrase must be longet that 8 letters")); return Err(io::Error::new(io::ErrorKind::InvalidInput, "Passphrase must be longer that 8 letters"));
} }
if ps.len() > 32 { if ps.len() > 32 {
return Err(io::Error::new(io::ErrorKind::InvalidInput, "Passphrase must be shorted that 32 letters")); return Err(io::Error::new(io::ErrorKind::InvalidInput, "Passphrase must not be longer than 32 letters"));
} }
print!("Reenter passphrase: "); print!("Reenter passphrase: ");
io::stdout().flush()?; io::stdout().flush()?;

Loading…
Cancel
Save