Format
This commit is contained in:
parent
43fda0a392
commit
6d9404b9b5
@ -41,7 +41,6 @@ bool save_buffer_to_file(Buffer* buffer)
|
|||||||
|
|
||||||
bool load_buffer_from_file(Buffer* buffer)
|
bool load_buffer_from_file(Buffer* buffer)
|
||||||
{
|
{
|
||||||
|
|
||||||
std::ifstream file("passwords.bin", std::ios::binary);
|
std::ifstream file("passwords.bin", std::ios::binary);
|
||||||
if (!file.is_open()) return false;
|
if (!file.is_open()) return false;
|
||||||
|
|
||||||
@ -116,6 +115,5 @@ Args get_args(int argc, char** argv, char** label) {
|
|||||||
return Args::Input;
|
return Args::Input;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return Args::Error;
|
return Args::Error;
|
||||||
}
|
}
|
@ -11,8 +11,6 @@ int main(int argc, char** argv)
|
|||||||
Args args = get_args(argc, argv, &label);
|
Args args = get_args(argc, argv, &label);
|
||||||
if (args == Args::Error) return 1;
|
if (args == Args::Error) return 1;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Buffer encrypted_buffer;
|
Buffer encrypted_buffer;
|
||||||
if (!load_buffer_from_file(&encrypted_buffer))
|
if (!load_buffer_from_file(&encrypted_buffer))
|
||||||
if (!(args == Args::Generate)) {
|
if (!(args == Args::Generate)) {
|
||||||
@ -20,8 +18,6 @@ int main(int argc, char** argv)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
printf_s("Input main password:");
|
printf_s("Input main password:");
|
||||||
std::string user_pass = get_passwd();
|
std::string user_pass = get_passwd();
|
||||||
if (user_pass.empty())
|
if (user_pass.empty())
|
||||||
@ -36,13 +32,11 @@ int main(int argc, char** argv)
|
|||||||
if (encrypted_buffer.size > 0)
|
if (encrypted_buffer.size > 0)
|
||||||
if (!crypto.decrypt(&encrypted_buffer, &decrypted_buffer)) return 1;
|
if (!crypto.decrypt(&encrypted_buffer, &decrypted_buffer)) return 1;
|
||||||
|
|
||||||
|
|
||||||
Pass* pass = nullptr;
|
Pass* pass = nullptr;
|
||||||
Pass new_pass = { 0 };
|
Pass new_pass = { 0 };
|
||||||
Pass* passwords = nullptr;
|
Pass* passwords = nullptr;
|
||||||
std::string new_string;
|
std::string new_string;
|
||||||
|
|
||||||
|
|
||||||
switch (args)
|
switch (args)
|
||||||
{
|
{
|
||||||
case Args::Get:
|
case Args::Get:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user