arg_generate and input

This commit is contained in:
Nikola Petrov 2023-08-28 00:35:49 +02:00
parent 9085e0ebb4
commit 8ebca780cd
2 changed files with 29 additions and 35 deletions

View File

@ -19,13 +19,11 @@ enum class Arg
Error // error
};
void print_args();
Arg get_args(int argc, char** argv, char** label);
std::optional<LoginInfoPointer> arg_get(Buffer& decrypted_buffer, const char* label);
std::optional<LoginInfoPointer> arg_generate(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const char* label, Cryptography& crypto);
LoginInfoPointer arg_generate(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const char* label, Cryptography& crypto);
std::optional<LoginInfoPointer> arg_input(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const char* label, Cryptography& crypto);

View File

@ -76,29 +76,8 @@ std::string get_user_string() {
return ret;
}
std::optional<LoginInfoPointer> arg_generate(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const char* label, Cryptography& crypto)
LoginInfoPointer save(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const char* label, Cryptography& crypto, std::string& username, std::string& password)
{
std::string username = get_user_string();
int default_length = 15;
printf_s("Input password length [%d]:", default_length);
std::string input;
int length = default_length;
std::getline(std::cin, input);
if (!input.empty())
{
std::istringstream iss(input);
if (!(iss >> length)) length = default_length;
}
printf_s("Generating password for %s\n", label);
std::string password;
generate_password(password, length);
int pass = find_logininfo_in_buffer(decrypted_buffer, label);
if (pass >= 0) delete_logininfo_from_buffer(decrypted_buffer, pass);
@ -109,27 +88,44 @@ std::optional<LoginInfoPointer> arg_generate(Buffer& decrypted_buffer, Buffer& e
return get_logininfo_pointer_from_buffer(decrypted_buffer, index->count - 1);
}
LoginInfoPointer arg_generate(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const char* label, Cryptography& crypto)
{
printf_s("Generating password for %s\n", label);
std::string username = get_user_string();
int default_length = 15;
printf_s("Input password length [%d]:", default_length);
std::string input;
int length = default_length;
std::getline(std::cin, input);
if (!input.empty())
{
std::istringstream iss(input);
if (!(iss >> length)) length = default_length;
}
std::string password;
generate_password(password, length);
return save(decrypted_buffer, encrypted_buffer, label, crypto, username, password);
}
std::optional<LoginInfoPointer> arg_input(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const char* label, Cryptography& crypto)
{
std::string username = get_user_string();
printf_s("Input password for %s:", label);
std::string new_string = get_user_password();
if (new_string.empty())
std::string password = get_user_password();
if (password.empty())
{
printf_s("error getting password\n");
return {};
}
int pass = find_logininfo_in_buffer(decrypted_buffer, label);
if (pass >= 0) delete_logininfo_from_buffer(decrypted_buffer, pass);
add_logininfo_to_buffer(decrypted_buffer, label, username.c_str(), new_string.c_str());
crypto.encrypt(&decrypted_buffer, &encrypted_buffer);
encrypted_buffer.save_to_file();
Index* index = (Index*)decrypted_buffer.buffer;
return get_logininfo_pointer_from_buffer(decrypted_buffer, index->count - 1);
return save(decrypted_buffer, encrypted_buffer, label, crypto, username, password);
}
void arg_list(Buffer& decrypted_buffer)