This commit is contained in:
Nikola Petrov 2023-08-15 16:54:08 +02:00
parent 43fda0a392
commit 6d9404b9b5
6 changed files with 97 additions and 105 deletions

View File

@ -41,7 +41,6 @@ bool save_buffer_to_file(Buffer* buffer)
bool load_buffer_from_file(Buffer* buffer)
{
std::ifstream file("passwords.bin", std::ios::binary);
if (!file.is_open()) return false;
@ -116,6 +115,5 @@ Args get_args(int argc, char** argv, char** label) {
return Args::Input;
}
return Args::Error;
}

View File

@ -11,8 +11,6 @@ int main(int argc, char** argv)
Args args = get_args(argc, argv, &label);
if (args == Args::Error) return 1;
Buffer encrypted_buffer;
if (!load_buffer_from_file(&encrypted_buffer))
if (!(args == Args::Generate)) {
@ -20,8 +18,6 @@ int main(int argc, char** argv)
return 1;
}
printf_s("Input main password:");
std::string user_pass = get_passwd();
if (user_pass.empty())
@ -36,13 +32,11 @@ int main(int argc, char** argv)
if (encrypted_buffer.size > 0)
if (!crypto.decrypt(&encrypted_buffer, &decrypted_buffer)) return 1;
Pass* pass = nullptr;
Pass new_pass = { 0 };
Pass* passwords = nullptr;
std::string new_string;
switch (args)
{
case Args::Get: