Rename in, out buffer
This commit is contained in:
parent
b59c4d1d26
commit
2874637d2c
@ -115,20 +115,20 @@ void arg_list(Buffer& decrypted_buffer)
|
||||
}
|
||||
}
|
||||
|
||||
void arg_delete(Buffer& in_buffer, Buffer& out_buffer, const char* label_to_del, Cryptography& crypto)
|
||||
void arg_delete(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const char* label_to_del, Cryptography& crypto)
|
||||
{
|
||||
printf_s("Deleting password for %s\n", label_to_del);
|
||||
int pass = find_logininfo_in_buffer(in_buffer, label_to_del);
|
||||
int pass = find_logininfo_in_buffer(decrypted_buffer, label_to_del);
|
||||
if (pass < 0)
|
||||
{
|
||||
printf_s("Password not found\n");
|
||||
return;
|
||||
}
|
||||
|
||||
delete_logininfo_from_buffer(in_buffer, pass);
|
||||
delete_logininfo_from_buffer(decrypted_buffer, pass);
|
||||
|
||||
crypto.encrypt(&in_buffer, &out_buffer);
|
||||
out_buffer.save_to_file();
|
||||
crypto.encrypt(&decrypted_buffer, &encrypted_buffer);
|
||||
encrypted_buffer.save_to_file();
|
||||
printf_s("Password deleted\n");
|
||||
}
|
||||
|
||||
@ -157,8 +157,6 @@ void arg_print_all_p(Buffer& decrypted_buffer, std::string& user_pass)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
void arg_change(Buffer& decrypted_buffer, Buffer& encrypted_buffer, std::string& user_pass, Cryptography& crypto)
|
||||
{
|
||||
printf_s("Input main password for confirmation:");
|
||||
|
Loading…
x
Reference in New Issue
Block a user