Change debug/test
This commit is contained in:
parent
02c80c0517
commit
8758536ed6
@ -6,100 +6,45 @@
|
|||||||
#include "arg_func.h"
|
#include "arg_func.h"
|
||||||
|
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
|
#define DEBUG 1
|
||||||
int main()
|
#endif // DEBUG
|
||||||
{
|
|
||||||
const char* label = "facebook";
|
|
||||||
Arg args = Arg::Print_all_p;
|
|
||||||
if (args == Arg::Error) return 1;
|
|
||||||
|
|
||||||
Buffer encrypted_buffer;
|
|
||||||
if (!encrypted_buffer.load_from_file("passwords.bin"))
|
|
||||||
if (!(args == Arg::Generate || args == Arg::Input)) {
|
|
||||||
printf_s("No passwords, try generating password\n");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string user_pass = "123";
|
|
||||||
Cryptography crypto(user_pass.c_str(), user_pass.size());
|
|
||||||
Buffer decrypted_buffer;
|
|
||||||
if (encrypted_buffer.size > 0)
|
|
||||||
if (!crypto.decrypt(&encrypted_buffer, &decrypted_buffer)) return 1;
|
|
||||||
|
|
||||||
if (decrypted_buffer.taken < 8) {
|
|
||||||
Index index = { 0, 0 };
|
|
||||||
index.offset = sizeof(Index);
|
|
||||||
decrypted_buffer.add_end((uint8_t*)&index, sizeof(Index));
|
|
||||||
}
|
|
||||||
|
|
||||||
std::optional<LoginInfoPointer> login_info;
|
|
||||||
|
|
||||||
switch (args)
|
|
||||||
{
|
|
||||||
case Arg::Get:
|
|
||||||
login_info = arg_get(decrypted_buffer, label);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case Arg::Generate:
|
|
||||||
login_info = arg_new_password(decrypted_buffer, encrypted_buffer, label, crypto, true);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case Arg::List:
|
|
||||||
arg_list(decrypted_buffer);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case Arg::Delete:
|
|
||||||
arg_delete(decrypted_buffer, encrypted_buffer, label, crypto);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case Arg::Print_all_p:
|
|
||||||
arg_print_all_p(decrypted_buffer, user_pass);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case Arg::Input:
|
|
||||||
login_info = arg_new_password(decrypted_buffer, encrypted_buffer, label, crypto, false);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case Arg::Username:
|
|
||||||
arg_username(decrypted_buffer, encrypted_buffer, label, crypto);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case Arg::Name:
|
|
||||||
arg_label_name(decrypted_buffer, encrypted_buffer, label, crypto);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case Arg::Change:
|
|
||||||
arg_change(decrypted_buffer, encrypted_buffer, user_pass, crypto);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case Arg::Show:
|
|
||||||
arg_show(decrypted_buffer, label);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!login_info.has_value()) return 0;
|
|
||||||
|
|
||||||
printf_s("Username: %s\n", login_info.value().username);
|
|
||||||
printf_s("Password: %s\n", login_info.value().password);
|
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
|
std::string user_pass = "";
|
||||||
|
char* label = nullptr;
|
||||||
|
Arg args = Arg::Error;
|
||||||
std::optional<std::string> path = get_save_path();
|
std::optional<std::string> path = get_save_path();
|
||||||
|
|
||||||
|
#if DEBUG
|
||||||
|
|
||||||
|
user_pass = "123";
|
||||||
|
args = Arg::Print_all_p;
|
||||||
|
std::string label_st = "facebook";
|
||||||
|
label = label_st.data();
|
||||||
|
path = "passwords.bin";
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
if (!path.has_value())
|
if (!path.has_value())
|
||||||
{
|
{
|
||||||
printf_s("Error opening save location\n");
|
printf_s("Error opening save location\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
char* label = nullptr;
|
args = get_args(argc, argv, &label);
|
||||||
Arg args = get_args(argc, argv, &label);
|
|
||||||
if (args == Arg::Error) return 1;
|
if (args == Arg::Error) return 1;
|
||||||
|
|
||||||
|
printf_s("Input main password:");
|
||||||
|
user_pass = get_user_password();
|
||||||
|
if (user_pass.empty())
|
||||||
|
{
|
||||||
|
printf_s("Error getting password\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // DEBUG
|
||||||
|
|
||||||
Buffer encrypted_buffer;
|
Buffer encrypted_buffer;
|
||||||
if (!encrypted_buffer.load_from_file(path.value()))
|
if (!encrypted_buffer.load_from_file(path.value()))
|
||||||
if (!(args == Arg::Generate || args == Arg::Input)) {
|
if (!(args == Arg::Generate || args == Arg::Input)) {
|
||||||
@ -107,14 +52,6 @@ int main(int argc, char** argv)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf_s("Input main password:");
|
|
||||||
std::string user_pass = get_user_password();
|
|
||||||
if (user_pass.empty())
|
|
||||||
{
|
|
||||||
printf_s("Error getting password\n");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
Cryptography crypto(user_pass.c_str(), user_pass.size());
|
Cryptography crypto(user_pass.c_str(), user_pass.size());
|
||||||
|
|
||||||
Buffer decrypted_buffer;
|
Buffer decrypted_buffer;
|
||||||
@ -174,10 +111,18 @@ int main(int argc, char** argv)
|
|||||||
|
|
||||||
if (!login_info.has_value()) return 1;
|
if (!login_info.has_value()) return 1;
|
||||||
|
|
||||||
|
#if DEBUG
|
||||||
|
|
||||||
|
printf_s("Username: %s\n", login_info.value().username);
|
||||||
|
printf_s("Password: %s\n", login_info.value().password);
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
printf_s("Username: %s\n", login_info.value().username);
|
printf_s("Username: %s\n", login_info.value().username);
|
||||||
put_data_on_clipboard(login_info.value().password);
|
put_data_on_clipboard(login_info.value().password);
|
||||||
printf_s("Password copied to clipboard\n");
|
printf_s("Password copied to clipboard\n");
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // _DEBUG
|
#endif // _DEBUG
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user