Delete password easilyier

This commit is contained in:
Alex 2022-05-23 17:36:08 +02:00
parent cb9b64a184
commit 53881fdb21
Signed by: lx
GPG Key ID: 0E496D15096376BE
2 changed files with 7 additions and 5 deletions

View File

@ -318,7 +318,6 @@ impl CryptoKeys {
}
pub async fn delete_password(
&self,
storage: &StorageCredentials,
password: &str,
allow_delete_all: bool,

View File

@ -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);
}