Fix delete

This commit is contained in:
Nikola Petrov 2023-08-26 17:20:45 +02:00
parent 6e3bd954e5
commit 29cfc93580
5 changed files with 32 additions and 40 deletions

View File

@ -1,8 +1,6 @@
#pragma once #pragma once
#include <fstream> #include <fstream>
constexpr auto MAX_STRING_SIZE = 15;
class Buffer; class Buffer;
struct Pass struct Pass
@ -38,7 +36,7 @@ void add_password_to_buffer(Buffer& in, const char* label, const char* password)
const char* get_password_from_buffer(Buffer& decrypted_buffer, int label); const char* get_password_from_buffer(Buffer& decrypted_buffer, int label);
void generate_password(std::string& password); void generate_password(std::string& password, int len);
bool save_buffer_to_file(Buffer& buffer); bool save_buffer_to_file(Buffer& buffer);

View File

@ -30,9 +30,9 @@ const char* arg_generate(Buffer& decrypted_buffer, Buffer& encrypted_buffer, con
int pass = find_password_in_buffer(decrypted_buffer, label); int pass = find_password_in_buffer(decrypted_buffer, label);
std::string password(MAX_STRING_SIZE, 0); std::string password;
generate_password(password); generate_password(password, 15);
if (pass < 0) if (pass < 0)
@ -89,9 +89,9 @@ const char* arg_input(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const
crypto.encrypt(&decrypted_buffer, &encrypted_buffer); crypto.encrypt(&decrypted_buffer, &encrypted_buffer);
save_buffer_to_file(encrypted_buffer); save_buffer_to_file(encrypted_buffer);
Index* index = (Index*)encrypted_buffer.buffer; Index* index = (Index*)decrypted_buffer.buffer;
return get_password_from_buffer(encrypted_buffer, index->count - 1); return get_password_from_buffer(decrypted_buffer, index->count - 1);
} }
@ -99,12 +99,13 @@ const char* arg_input(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const
{ {
delete_password_from_buffer(decrypted_buffer, encrypted_buffer, pass); delete_password_from_buffer(decrypted_buffer, encrypted_buffer, pass);
add_password_to_buffer(encrypted_buffer, label, new_string.c_str()); add_password_to_buffer(encrypted_buffer, label, new_string.c_str());
crypto.encrypt(&encrypted_buffer, &decrypted_buffer); crypto.encrypt(&encrypted_buffer, &decrypted_buffer);
save_buffer_to_file(decrypted_buffer); save_buffer_to_file(decrypted_buffer);
Index* index = (Index*)decrypted_buffer.buffer; Index* index = (Index*)encrypted_buffer.buffer;
return get_password_from_buffer(decrypted_buffer, index->count - 1); return get_password_from_buffer(encrypted_buffer, index->count - 1);
} }
@ -132,12 +133,8 @@ void arg_delete(Buffer& in_buffer, Buffer& out_buffer, const char* label_to_del,
return; return;
} }
arg_list(in_buffer);
delete_password_from_buffer(in_buffer, out_buffer, pass); delete_password_from_buffer(in_buffer, out_buffer, pass);
arg_list(out_buffer);
crypto.encrypt(&out_buffer, &in_buffer); crypto.encrypt(&out_buffer, &in_buffer);
save_buffer_to_file(in_buffer); save_buffer_to_file(in_buffer);
printf_s("Password deleted\n"); printf_s("Password deleted\n");

View File

@ -18,31 +18,32 @@ int find_password_in_buffer(Buffer& decrypted_buffer, const char* label)
void delete_password_from_buffer(Buffer& in, Buffer& out, int index_of_pass) void delete_password_from_buffer(Buffer& in, Buffer& out, int index_of_pass)
{ {
Index* index = (Index*)in.buffer; Index* in_index = (Index*)in.buffer;
Pass* pass = (Pass*)(in.buffer + sizeof(Index)); Pass* in_pass = (Pass*)(in.buffer + sizeof(Index));
int size = sizeof(Index) + sizeof(Pass) * (index->count - 1);
int size = sizeof(Index) + sizeof(Pass) * (in_index->count - 1);
out.resize(size); out.resize(size);
out.taken = size; out.taken = size;
((Index*)out.buffer)[0].count = index->count - 1; Index* out_index = (Index*)out.buffer;
((Index*)out.buffer)[0].offset = size; out_index->count = in_index->count - 1;
out_index->offset = size;
int count = 0; int count = 0;
for (size_t i = 0; i < index->count; i++) for (size_t i = 0; i < in_index->count; i++)
{ {
if (i == index_of_pass) continue; if (i == index_of_pass) continue;
uint8_t* label = in.buffer + pass[i].label + index->offset; uint8_t* label = in.buffer + in_pass[i].label + in_index->offset;
size_t label_start = out.add_end(label, strlen((const char*)label) + 1); uint8_t* password = in.buffer + in_pass[i].password + in_index->offset;
uint8_t* password = in.buffer + pass[i].password + index->offset; size_t label_start = out.add_end(label, strlen((char*)label) + 1);
size_t password_start = out.add_end(password, strlen((const char*)password) + 1); size_t password_start = out.add_end(password, strlen((char*)password) + 1);
Pass* out_pass = (Pass*)(out.buffer + sizeof(Index));
pass = (Pass*)(out.buffer + sizeof(Index)); out_pass[count].label = label_start - size;
pass[count].label = label_start - size; out_pass[count].password = password_start - size;
pass[count].password = password_start - size;
count++; count++;
} }
} }
@ -71,15 +72,14 @@ const char* get_password_from_buffer(Buffer& decrypted_buffer, int label)
return (const char*)decrypted_buffer.buffer + pass[label].password + index->offset; return (const char*)decrypted_buffer.buffer + pass[label].password + index->offset;
} }
void generate_password(std::string& password) void generate_password(std::string& password, int len)
{ {
srand(time(NULL)); srand(time(NULL));
char characters[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789~!@#$%^&*()_-+={[}]|:;<,>.?"; char characters[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789~!@#$%^&*()_-+={[}]|:;<,>.?";
for (int i = 0; i < MAX_STRING_SIZE; i++) for (int i = 0; i < len; i++)
{ {
password[i] = characters[rand() % (sizeof(characters) - 1)]; password[i] += characters[rand() % (sizeof(characters) - 1)];
} }
password[MAX_STRING_SIZE - 1] = '\0';
} }
bool save_buffer_to_file(Buffer& buffer) bool save_buffer_to_file(Buffer& buffer)

View File

@ -12,8 +12,8 @@
int main() int main()
{ {
const char* label = "pet"; const char* label = "facebook";
Arg args = Arg::List; Arg args = Arg::Print_all_p;
if (args == Arg::Error) return 1; if (args == Arg::Error) return 1;
Buffer encrypted_buffer; Buffer encrypted_buffer;
@ -25,10 +25,7 @@ int main()
std::string user_pass = "123"; std::string user_pass = "123";
Cryptography crypto(user_pass.c_str(), user_pass.size()); Cryptography crypto(user_pass.c_str(), user_pass.size());
Buffer decrypted_buffer; Buffer decrypted_buffer;
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;
@ -70,7 +67,7 @@ int main()
break; break;
} }
if (!pass) return 1; if (!pass) return 0;
printf_s("Password copied to clipboard\n"); printf_s("Password copied to clipboard\n");
put_data_on_clipboard(pass); put_data_on_clipboard(pass);
@ -86,7 +83,7 @@ int main(int argc, char** argv)
if (args == Arg::Error) return 1; if (args == Arg::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 == Arg::Generate || args == Arg::Input)) { if (!(args == Arg::Generate || args == Arg::Input)) {
printf_s("No passwords, try generating password\n"); printf_s("No passwords, try generating password\n");
return 1; return 1;

View File

@ -6,7 +6,7 @@
bool put_data_on_clipboard(const char* text) { bool put_data_on_clipboard(const char* text) {
size_t len = strlen(text); size_t len = strlen(text);
if (strnlen_s(text, MAX_STRING_SIZE) == 0) { if (len == 0) {
printf_s("Text is empty\n"); printf_s("Text is empty\n");
return false; return false;
} }