Format
This commit is contained in:
parent
43fda0a392
commit
6d9404b9b5
@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
|
|
||||||
enum class Glob_Result {
|
enum class Glob_Result {
|
||||||
OOM_ERROR,
|
OOM_ERROR,
|
||||||
ENCODING_ERROR,
|
ENCODING_ERROR,
|
||||||
SYNTAX_ERROR,
|
SYNTAX_ERROR,
|
||||||
UNMATCHED,
|
UNMATCHED,
|
||||||
MATCHED,
|
MATCHED,
|
||||||
} ;
|
};
|
||||||
|
|
||||||
// https://github.com/tsoding/glob.h
|
// https://github.com/tsoding/glob.h
|
||||||
Glob_Result glob(const char* pattern, const char* text);
|
Glob_Result glob(const char* pattern, const char* text);
|
@ -35,7 +35,7 @@ bool Buffer::resize(size_t new_size)
|
|||||||
void Buffer::add(uint8_t* data, size_t data_size)
|
void Buffer::add(uint8_t* data, size_t data_size)
|
||||||
{
|
{
|
||||||
if (taken + data_size > size)
|
if (taken + data_size > size)
|
||||||
if(!resize(size + data_size)) return;
|
if (!resize(size + data_size)) return;
|
||||||
|
|
||||||
memcpy_s(buffer + taken, size - taken, data, data_size);
|
memcpy_s(buffer + taken, size - taken, data, data_size);
|
||||||
taken += data_size;
|
taken += data_size;
|
||||||
|
@ -34,7 +34,7 @@ bool Cryptography::encrypt(Buffer* plain, Buffer* encrypted)
|
|||||||
if (!ctx) return handleErrors();
|
if (!ctx) return handleErrors();
|
||||||
if (1 != EVP_EncryptInit_ex(ctx, EVP_aes_256_cbc(), NULL, key, iv)) return handleErrors();
|
if (1 != EVP_EncryptInit_ex(ctx, EVP_aes_256_cbc(), NULL, key, iv)) return handleErrors();
|
||||||
|
|
||||||
if (1 != EVP_EncryptUpdate(ctx, encrypted->buffer, (int*)& encrypted->taken, plain->buffer, plain->taken)) return handleErrors();
|
if (1 != EVP_EncryptUpdate(ctx, encrypted->buffer, (int*)&encrypted->taken, plain->buffer, plain->taken)) return handleErrors();
|
||||||
int final_len;
|
int final_len;
|
||||||
if (1 != EVP_EncryptFinal_ex(ctx, encrypted->buffer + encrypted->taken, &final_len)) return handleErrors();
|
if (1 != EVP_EncryptFinal_ex(ctx, encrypted->buffer + encrypted->taken, &final_len)) return handleErrors();
|
||||||
encrypted->taken += final_len;
|
encrypted->taken += final_len;
|
||||||
@ -54,7 +54,7 @@ bool Cryptography::decrypt(Buffer* encrypted, Buffer* decrypted)
|
|||||||
if (!ctx) return handleErrors();
|
if (!ctx) return handleErrors();
|
||||||
if (1 != EVP_DecryptInit_ex(ctx, EVP_aes_256_cbc(), NULL, key, iv)) return handleErrors();
|
if (1 != EVP_DecryptInit_ex(ctx, EVP_aes_256_cbc(), NULL, key, iv)) return handleErrors();
|
||||||
|
|
||||||
if (1 != EVP_DecryptUpdate(ctx, decrypted->buffer, (int*) & decrypted->taken, encrypted->buffer, encrypted->taken)) return handleErrors();
|
if (1 != EVP_DecryptUpdate(ctx, decrypted->buffer, (int*)&decrypted->taken, encrypted->buffer, encrypted->taken)) return handleErrors();
|
||||||
int final_len;
|
int final_len;
|
||||||
if (1 != EVP_DecryptFinal_ex(ctx, decrypted->buffer + decrypted->taken, &final_len)) return handleErrors();
|
if (1 != EVP_DecryptFinal_ex(ctx, decrypted->buffer + decrypted->taken, &final_len)) return handleErrors();
|
||||||
decrypted->taken += final_len;
|
decrypted->taken += final_len;
|
||||||
|
@ -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;
|
||||||
}
|
}
|
@ -2,93 +2,93 @@
|
|||||||
|
|
||||||
Glob_Result glob(const char* pattern, const char* text)
|
Glob_Result glob(const char* pattern, const char* text)
|
||||||
{
|
{
|
||||||
while (*pattern != '\0' && *text != '\0') {
|
while (*pattern != '\0' && *text != '\0') {
|
||||||
switch (*pattern) {
|
switch (*pattern) {
|
||||||
case '?': {
|
case '?': {
|
||||||
pattern += 1;
|
pattern += 1;
|
||||||
text += 1;
|
text += 1;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case '*': {
|
case '*': {
|
||||||
Glob_Result result = glob(pattern + 1, text);
|
Glob_Result result = glob(pattern + 1, text);
|
||||||
if (result != Glob_Result::UNMATCHED) return result;
|
if (result != Glob_Result::UNMATCHED) return result;
|
||||||
text += 1;
|
text += 1;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case '[': {
|
case '[': {
|
||||||
bool matched = false;
|
bool matched = false;
|
||||||
bool negate = false;
|
bool negate = false;
|
||||||
|
|
||||||
pattern += 1; // skipping [
|
pattern += 1; // skipping [
|
||||||
if (*pattern == '\0') return Glob_Result::SYNTAX_ERROR; // unclosed [
|
if (*pattern == '\0') return Glob_Result::SYNTAX_ERROR; // unclosed [
|
||||||
|
|
||||||
if (*pattern == '!') {
|
if (*pattern == '!') {
|
||||||
negate = true;
|
negate = true;
|
||||||
pattern += 1;
|
pattern += 1;
|
||||||
if (*pattern == '\0') return Glob_Result::SYNTAX_ERROR; // unclosed [
|
if (*pattern == '\0') return Glob_Result::SYNTAX_ERROR; // unclosed [
|
||||||
}
|
}
|
||||||
|
|
||||||
char prev = *pattern;
|
char prev = *pattern;
|
||||||
matched |= prev == *text;
|
matched |= prev == *text;
|
||||||
pattern += 1;
|
pattern += 1;
|
||||||
|
|
||||||
while (*pattern != ']' && *pattern != '\0') {
|
while (*pattern != ']' && *pattern != '\0') {
|
||||||
switch (*pattern) {
|
switch (*pattern) {
|
||||||
case '-': {
|
case '-': {
|
||||||
pattern += 1;
|
pattern += 1;
|
||||||
switch (*pattern) {
|
switch (*pattern) {
|
||||||
case ']':
|
case ']':
|
||||||
matched |= '-' == *text;
|
matched |= '-' == *text;
|
||||||
break;
|
break;
|
||||||
case '\0':
|
case '\0':
|
||||||
return Glob_Result::SYNTAX_ERROR; // unclosed [
|
return Glob_Result::SYNTAX_ERROR; // unclosed [
|
||||||
default: {
|
default: {
|
||||||
matched |= prev <= *text && *text <= *pattern;
|
matched |= prev <= *text && *text <= *pattern;
|
||||||
prev = *pattern;
|
prev = *pattern;
|
||||||
pattern += 1;
|
pattern += 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default: {
|
default: {
|
||||||
prev = *pattern;
|
prev = *pattern;
|
||||||
matched |= prev == *text;
|
matched |= prev == *text;
|
||||||
pattern += 1;
|
pattern += 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*pattern != ']') return Glob_Result::SYNTAX_ERROR; // unclosed [
|
if (*pattern != ']') return Glob_Result::SYNTAX_ERROR; // unclosed [
|
||||||
if (negate) matched = !matched;
|
if (negate) matched = !matched;
|
||||||
if (!matched) return Glob_Result::UNMATCHED;
|
if (!matched) return Glob_Result::UNMATCHED;
|
||||||
|
|
||||||
pattern += 1;
|
pattern += 1;
|
||||||
text += 1;
|
text += 1;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case '\\':
|
case '\\':
|
||||||
pattern += 1;
|
pattern += 1;
|
||||||
if (*pattern == '\0') return Glob_Result::SYNTAX_ERROR; // unfinished escape
|
if (*pattern == '\0') return Glob_Result::SYNTAX_ERROR; // unfinished escape
|
||||||
// fallthrough
|
// fallthrough
|
||||||
default: {
|
default: {
|
||||||
if (*pattern == *text) {
|
if (*pattern == *text) {
|
||||||
pattern += 1;
|
pattern += 1;
|
||||||
text += 1;
|
text += 1;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return Glob_Result::UNMATCHED;
|
return Glob_Result::UNMATCHED;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*text == '\0') {
|
if (*text == '\0') {
|
||||||
while (*pattern == '*') pattern += 1;
|
while (*pattern == '*') pattern += 1;
|
||||||
if (*pattern == '\0') return Glob_Result::MATCHED;
|
if (*pattern == '\0') return Glob_Result::MATCHED;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Glob_Result::UNMATCHED;
|
return Glob_Result::UNMATCHED;
|
||||||
}
|
}
|
@ -9,9 +9,7 @@ int main(int argc, char** argv)
|
|||||||
{
|
{
|
||||||
char* label = nullptr;
|
char* label = nullptr;
|
||||||
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))
|
||||||
@ -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:
|
||||||
@ -63,7 +57,7 @@ int main(int argc, char** argv)
|
|||||||
{
|
{
|
||||||
generate_password(new_pass.password);
|
generate_password(new_pass.password);
|
||||||
strcpy_s(new_pass.label, MAX_STRING_SIZE, label);
|
strcpy_s(new_pass.label, MAX_STRING_SIZE, label);
|
||||||
decrypted_buffer.add((uint8_t*) & new_pass, sizeof(Pass));
|
decrypted_buffer.add((uint8_t*)&new_pass, sizeof(Pass));
|
||||||
pass = &new_pass;
|
pass = &new_pass;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -125,7 +119,7 @@ int main(int argc, char** argv)
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Args::Input:
|
case Args::Input:
|
||||||
printf_s("Input password for %s:\n", label);
|
printf_s("Input password for %s:\n", label);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user