Delete password easilyier
This commit is contained in:
parent
cb9b64a184
commit
53881fdb21
2 changed files with 7 additions and 5 deletions
|
@ -318,7 +318,6 @@ impl CryptoKeys {
|
|||
}
|
||||
|
||||
pub async fn delete_password(
|
||||
&self,
|
||||
storage: &StorageCredentials,
|
||||
password: &str,
|
||||
allow_delete_all: bool,
|
||||
|
|
11
src/main.rs
11
src/main.rs
|
@ -218,14 +218,17 @@ async fn main() -> Result<()> {
|
|||
|
||||
let existing_password = rpassword::prompt_password("Enter password to delete: ")?;
|
||||
|
||||
let keys = CryptoKeys::open(&creds, &user_secrets, &existing_password).await?;
|
||||
keys.delete_password(&creds, &existing_password, allow_delete_all)
|
||||
.await?;
|
||||
let keys = match allow_delete_all {
|
||||
true => Some(CryptoKeys::open(&creds, &user_secrets, &existing_password).await?),
|
||||
false => None,
|
||||
};
|
||||
|
||||
CryptoKeys::delete_password(&creds, &existing_password, allow_delete_all).await?;
|
||||
|
||||
println!("");
|
||||
println!("Password was deleted successfully.");
|
||||
|
||||
if allow_delete_all {
|
||||
if let Some(keys) = keys {
|
||||
println!("As a reminder, here are your cryptographic keys:");
|
||||
dump_keys(&keys);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue