From 36de6ec412011208b99740b0ffa759ac5d4ce97b Mon Sep 17 00:00:00 2001 From: Nikola Petrov Date: Sun, 14 Jan 2024 21:43:49 +0100 Subject: [PATCH] It compiles no encript --- include/arg_func.h | 45 -------- include/arg_func.hpp | 48 ++++++++ include/{Buffer.h => buffer.hpp} | 19 ++-- include/cryptography.h | 23 ---- include/cryptography.hpp | 27 +++++ include/func.h | 35 ------ include/func.hpp | 38 +++++++ include/glob.h | 13 --- include/glob.hpp | 16 +++ include/sys.hpp | 11 ++ include/win.h | 6 - source/main.cpp => main.cpp | 60 +++++----- makefile | 30 +++++ source/arg_func.cpp | 185 +++++++++++++++++-------------- source/buffer.cpp | 56 +++++----- source/cryptography.cpp | 74 +++---------- source/func.cpp | 61 +++++----- source/glob.cpp | 89 +++++++++------ source/{win.cpp => sys.cpp} | 70 ++++++++---- 19 files changed, 500 insertions(+), 406 deletions(-) delete mode 100644 include/arg_func.h create mode 100644 include/arg_func.hpp rename include/{Buffer.h => buffer.hpp} (59%) delete mode 100644 include/cryptography.h create mode 100644 include/cryptography.hpp delete mode 100644 include/func.h create mode 100644 include/func.hpp delete mode 100644 include/glob.h create mode 100644 include/glob.hpp create mode 100644 include/sys.hpp delete mode 100644 include/win.h rename source/main.cpp => main.cpp (68%) create mode 100644 makefile rename source/{win.cpp => sys.cpp} (73%) diff --git a/include/arg_func.h b/include/arg_func.h deleted file mode 100644 index 9a6fd26..0000000 --- a/include/arg_func.h +++ /dev/null @@ -1,45 +0,0 @@ -#pragma once - -struct LoginInfoPointer; -class Buffer; -class Cryptography; -#include -#include - -enum class Arg -{ - Get, // get password for label - Generate, // generate password for label - List, // list all labels - Delete, // delete password for label - Print_all_p, // print all passwords - Input, // input password for label - Change, // change main password - Show, // show password for label - Error, // error - Username, // update username - Name, // update label name - File, // select save file -}; - -Arg get_args(int argc, char** argv, char** label); - -std::optional arg_get(Buffer& decrypted_buffer, const char* label); - -std::optional arg_new_password(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const char* label, Cryptography& crypto, bool generate); - -void arg_username(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const char* label, Cryptography& crypto); - -void arg_label_name(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const char* label, Cryptography& crypto); - -void arg_list(Buffer& decrypted_buffer); - -void arg_delete(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const char* label, Cryptography& crypto); - -void arg_print_all_p(Buffer& decrypted_buffer, std::string& user_pass); - -void arg_change(Buffer& decrypted_buffer, Buffer& encrypted_buffer, std::string& user_pass, Cryptography& crypto); - -void arg_show(Buffer& decrypted_buffer, const char* label); - -void arg_file(Buffer& decrypted_buffer, Buffer& encrypted_buffer, const char* label, Cryptography& crypto, std::string& save_location_path); \ No newline at end of file diff --git a/include/arg_func.hpp b/include/arg_func.hpp new file mode 100644 index 0000000..c038c55 --- /dev/null +++ b/include/arg_func.hpp @@ -0,0 +1,48 @@ +#ifndef ARG_FUNC_HPP +#define ARG_FUNC_HPP + +struct LoginInfoPointer; +class Buffer; +class Cryptography; +#include +#include + +enum class Arg +{ + Get, // get password for label + Generate, // generate password for label + List, // list all labels + Delete, // delete password for label + Print_all_p, // print all passwords + Input, // input password for label + Change, // change main password + Show, // show password for label + Error, // error + Username, // update username + Name, // update label name + File, // select save file +}; + +Arg get_args(int argc, char **argv, char **label); + +std::optional arg_get(Buffer &decrypted_buffer, const char *label); + +std::optional arg_new_password(Buffer &decrypted_buffer, Buffer &encrypted_buffer, const char *label, Cryptography &crypto, bool generate); + +void arg_username(Buffer &decrypted_buffer, Buffer &encrypted_buffer, const char *label, Cryptography &crypto); + +void arg_label_name(Buffer &decrypted_buffer, Buffer &encrypted_buffer, const char *label, Cryptography &crypto); + +void arg_list(Buffer &decrypted_buffer); + +void arg_delete(Buffer &decrypted_buffer, Buffer &encrypted_buffer, const char *label, Cryptography &crypto); + +void arg_print_all_p(Buffer &decrypted_buffer, std::string &user_pass); + +void arg_change(Buffer &decrypted_buffer, Buffer &encrypted_buffer, std::string &user_pass, Cryptography &crypto); + +void arg_show(Buffer &decrypted_buffer, const char *label); + +void arg_file(Buffer &decrypted_buffer, Buffer &encrypted_buffer, const char *label, Cryptography &crypto, std::string &save_location_path); + +#endif \ No newline at end of file diff --git a/include/Buffer.h b/include/buffer.hpp similarity index 59% rename from include/Buffer.h rename to include/buffer.hpp index 5cf4403..a16c249 100644 --- a/include/Buffer.h +++ b/include/buffer.hpp @@ -1,11 +1,13 @@ -#pragma once +#ifndef BUFFER_HPP +#define BUFFER_HPP + #include #include class Buffer { public: - uint8_t* buffer = nullptr; + uint8_t *buffer = nullptr; size_t taken = 0; size_t size = 0; std::string file_path; @@ -14,17 +16,17 @@ public: Buffer(); ~Buffer(); bool resize(size_t new_size); - int add_end(uint8_t* data, size_t data_size); - int add_middle(uint8_t* data, size_t data_size, size_t index); + int add_end(uint8_t *data, size_t data_size); + int add_middle(uint8_t *data, size_t data_size, size_t index); // Removes data from buffer without checking if it's in the buffer - void remove_fast(uint8_t* data, size_t data_size); + void remove_fast(uint8_t *data, size_t data_size); void remove(size_t index, size_t data_size); - size_t find(uint8_t* data, size_t data_size); + size_t find(uint8_t *data, size_t data_size); - void remove(uint8_t* data, size_t data_size); + void remove(uint8_t *data, size_t data_size); void clear() { taken = 0; } @@ -33,5 +35,6 @@ public: bool load_from_file(); bool load_from_file(std::string file_path); +}; -}; \ No newline at end of file +#endif \ No newline at end of file diff --git a/include/cryptography.h b/include/cryptography.h deleted file mode 100644 index ec425f6..0000000 --- a/include/cryptography.h +++ /dev/null @@ -1,23 +0,0 @@ -#pragma once -#include - -struct evp_cipher_ctx_st; -typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX; - -class Buffer; - -class Cryptography -{ -public: - Cryptography(const char* password, size_t size); - ~Cryptography(); - bool encrypt(Buffer* plain, Buffer* encrypted); - bool decrypt(Buffer* encrypted, Buffer* decrypted); - bool generate_key_and_iv_from_password(const char* password, size_t size); - -private: - uint8_t key[32] = { 0 }; - uint8_t iv[16] = { 0 }; - EVP_CIPHER_CTX* ctx = nullptr; - bool handleErrors(); -}; diff --git a/include/cryptography.hpp b/include/cryptography.hpp new file mode 100644 index 0000000..4c56d19 --- /dev/null +++ b/include/cryptography.hpp @@ -0,0 +1,27 @@ +#ifndef CRYPTOGRAPHY_HPP +#define CRYPTOGRAPHY_HPP + +#include + +struct evp_cipher_ctx_st; +typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX; + +class Buffer; + +class Cryptography +{ +public: + Cryptography(const char *password, size_t size); + ~Cryptography(); + bool encrypt(Buffer *plain, Buffer *encrypted); + bool decrypt(Buffer *encrypted, Buffer *decrypted); + bool generate_key_and_iv_from_password(const char *password, size_t size); + +private: + uint8_t key[32] = {0}; + uint8_t iv[16] = {0}; + EVP_CIPHER_CTX *ctx = nullptr; + bool handleErrors(); +}; + +#endif \ No newline at end of file diff --git a/include/func.h b/include/func.h deleted file mode 100644 index d3c172c..0000000 --- a/include/func.h +++ /dev/null @@ -1,35 +0,0 @@ -#pragma once -#include - -class Buffer; - -struct LoginInfo -{ - uint32_t label; - uint32_t username; - uint32_t password; -}; - -struct LoginInfoPointer -{ - const char* label; - const char* username; - const char* password; -}; - -struct Index -{ - uint32_t count; - uint32_t offset; -}; - -int find_logininfo_in_buffer(Buffer& buffer, const char* label); - -void delete_logininfo_from_buffer(Buffer& buffer, int index_of_pass); - -void add_logininfo_to_buffer(Buffer& buffer, const char* label, const char* username, const char* password); - -LoginInfoPointer get_logininfo_pointer_from_buffer(Buffer& buffer, int index_of_pass); - -void generate_password(std::string& password, int len); - diff --git a/include/func.hpp b/include/func.hpp new file mode 100644 index 0000000..e4cef6f --- /dev/null +++ b/include/func.hpp @@ -0,0 +1,38 @@ +#ifndef FUNC_HPP +#define FUNC_HPP + +#include + +class Buffer; + +struct LoginInfo +{ + uint32_t label; + uint32_t username; + uint32_t password; +}; + +struct LoginInfoPointer +{ + const char *label; + const char *username; + const char *password; +}; + +struct Index +{ + uint32_t count; + uint32_t offset; +}; + +int find_logininfo_in_buffer(Buffer &buffer, const char *label); + +void delete_logininfo_from_buffer(Buffer &buffer, int index_of_pass); + +void add_logininfo_to_buffer(Buffer &buffer, const char *label, const char *username, const char *password); + +LoginInfoPointer get_logininfo_pointer_from_buffer(Buffer &buffer, int index_of_pass); + +void generate_password(std::string &password, int len); + +#endif \ No newline at end of file diff --git a/include/glob.h b/include/glob.h deleted file mode 100644 index 0e4e821..0000000 --- a/include/glob.h +++ /dev/null @@ -1,13 +0,0 @@ -#pragma once - - -enum class Glob_Result { - OOM_ERROR, - ENCODING_ERROR, - SYNTAX_ERROR, - UNMATCHED, - MATCHED, -}; - -// https://github.com/tsoding/glob.h -Glob_Result glob(const char* pattern, const char* text); \ No newline at end of file diff --git a/include/glob.hpp b/include/glob.hpp new file mode 100644 index 0000000..d234961 --- /dev/null +++ b/include/glob.hpp @@ -0,0 +1,16 @@ +#ifndef GLOB_HPP +#define GLOB_HPP + +enum class Glob_Result +{ + OOM_ERROR, + ENCODING_ERROR, + SYNTAX_ERROR, + UNMATCHED, + MATCHED, +}; + +// https://github.com/tsoding/glob.h +Glob_Result glob(const char *pattern, const char *text); + +#endif \ No newline at end of file diff --git a/include/sys.hpp b/include/sys.hpp new file mode 100644 index 0000000..2acf6cc --- /dev/null +++ b/include/sys.hpp @@ -0,0 +1,11 @@ +#ifndef WIN_HPP +#define WIN_HPP + +#include +#include + +bool put_data_on_clipboard(const char *text); +std::string get_user_password(); +std::optional get_save_path(); + +#endif \ No newline at end of file diff --git a/include/win.h b/include/win.h deleted file mode 100644 index 9b3c5f9..0000000 --- a/include/win.h +++ /dev/null @@ -1,6 +0,0 @@ -#pragma once -#include - -bool put_data_on_clipboard(const char* text); -std::string get_user_password(); -std::optional get_save_path(); diff --git a/source/main.cpp b/main.cpp similarity index 68% rename from source/main.cpp rename to main.cpp index 6402c51..d7b0c6e 100644 --- a/source/main.cpp +++ b/main.cpp @@ -1,20 +1,20 @@ #include #include -#include "win.h" -#include "buffer.h" -#include "cryptography.h" -#include "func.h" -#include "arg_func.h" +#include "sys.hpp" +#include "buffer.hpp" +#include "cryptography.hpp" +#include "func.hpp" +#include "arg_func.hpp" #ifdef _DEBUG #define DEBUG 0 #endif // DEBUG -int main(int argc, char** argv) +int main(int argc, char **argv) { std::string user_pass = ""; - char* label = nullptr; + char *label = nullptr; Arg args = Arg::Error; std::optional save_location_path = std::nullopt; std::string save_location = ""; @@ -30,16 +30,17 @@ int main(int argc, char** argv) #else args = get_args(argc, argv, &label); - if (args == Arg::Error) return 1; + if (args == Arg::Error) + return 1; save_location_path = get_save_path(); if (!save_location_path.has_value()) { - printf_s("Error geting file for save path\n"); + printf("Error geting file for save path\n"); return 1; } - std::fstream ifile(save_location_path.value(), std::ios::binary || std::ios::in); + std::ifstream ifile(save_location_path.value(), std::ios::binary); if (ifile.is_open()) { std::getline(ifile, save_location); @@ -48,28 +49,28 @@ int main(int argc, char** argv) if (save_location.empty() && args != Arg::File) { - printf_s("No save location, try selecting folder (-f)\n"); + printf("No save location, try selecting folder (-f)\n"); return 1; } #endif // DEBUG Buffer encrypted_buffer; - //load file + // load file if (!encrypted_buffer.load_from_file(save_location)) // if file doesn't exist, check if it's a new password is being generated if not, exit - if (!(args == Arg::Generate || args == Arg::Input || args == Arg::File)) { - printf_s("No passwords, try generating password (-g or -i)\n"); + if (!(args == Arg::Generate || args == Arg::Input || args == Arg::File)) + { + printf("No passwords, try generating password (-g or -i)\n"); return 1; } - #if !DEBUG - printf_s("Input main password:"); + printf("Input main password:"); user_pass = get_user_password(); if (user_pass.empty()) { - printf_s("Error getting password\n"); + printf("Error getting password\n"); return 1; } #endif // !1 @@ -77,15 +78,17 @@ int main(int argc, char** argv) Cryptography crypto(user_pass.c_str(), user_pass.size()); Buffer decrypted_buffer; - //check if encrypted buffer is empty if not, decrypt it + // check if encrypted buffer is empty if not, decrypt it if (encrypted_buffer.size > 0) - if (!crypto.decrypt(&encrypted_buffer, &decrypted_buffer)) return 1; + if (!crypto.decrypt(&encrypted_buffer, &decrypted_buffer)) + return 1; - //if decrypted buffer is empty, add index - if (decrypted_buffer.taken < sizeof(Index)) { - Index index = { 0 }; + // if decrypted buffer is empty, add index + if (decrypted_buffer.taken < sizeof(Index)) + { + Index index = {0}; index.offset = sizeof(Index); - decrypted_buffer.add_end((uint8_t*)&index, sizeof(Index)); + decrypted_buffer.add_end((uint8_t *)&index, sizeof(Index)); } std::optional login_info; @@ -137,18 +140,19 @@ int main(int argc, char** argv) break; } - if (!login_info.has_value()) return 0; + if (!login_info.has_value()) + return 0; #if DEBUG - printf_s("Username: %s\n", login_info.value().username); - printf_s("Password: %s\n", login_info.value().password); + printf("Username: %s\n", login_info.value().username); + printf("Password: %s\n", login_info.value().password); #else - printf_s("Username: %s\n", login_info.value().username); + printf("Username: %s\n", login_info.value().username); put_data_on_clipboard(login_info.value().password); - printf_s("Password copied to clipboard\n"); + printf("Password copied to clipboard\n"); #endif // _DEBUG diff --git a/makefile b/makefile new file mode 100644 index 0000000..3a939d3 --- /dev/null +++ b/makefile @@ -0,0 +1,30 @@ +CC=g++ + +CFLAGS= -std=c++23 + +INCLUDE_DIR= include + +SRC_DIR= source + +# Get all cpp files from src directory +SRCS := $(wildcard $(SRC_DIR)/*.cpp) + +# Get all header files from include directory +HDRS := $(wildcard $(INCLUDE_DIR)/*.h) + +all: main run + +main: main.cpp $(SRCS) $(HDRS) + $(CC) $(CFLAGS) -O3 -I$(INCLUDE_DIR) $(SRCS) main.cpp -o main + +debug: main.cpp $(SRCS) $(HDRS) + $(CC) $(CFLAGS) -I$(INCLUDE_DIR) $(SRCS) -g main.cpp -o main + +run: main + ./main + +zip: + zip -r main.zip main.cpp $(INCLUDE_DIR) $(SRC_DIR) makefile + +clean: + rm main diff --git a/source/arg_func.cpp b/source/arg_func.cpp index 064eb64..c531b10 100644 --- a/source/arg_func.cpp +++ b/source/arg_func.cpp @@ -2,34 +2,36 @@ #include #include #include +#include -#include "arg_func.h" -#include "func.h" -#include "win.h" -#include "func.h" -#include "buffer.h" -#include "cryptography.h" +#include "arg_func.hpp" +#include "func.hpp" +#include "sys.hpp" +#include "func.hpp" +#include "buffer.hpp" +#include "cryptography.hpp" void print_args() { - printf_s(" Usage:\n\n"); - printf_s(" password_manager.exe [flags]\n\n"); - printf_s(" Flags:\n\n"); - printf_s(" -h print this message\n"); - printf_s("