add magic num

to be able to see if file is decrypted corecly
This commit is contained in:
Nikola Petrov 2024-02-04 21:23:54 +01:00
parent 7e3bd98ab9
commit e30bbe5ce1
3 changed files with 11 additions and 0 deletions

View File

@ -26,6 +26,7 @@ Flags:
```
# Versions:
- V5 - Add support for linux
- V4 - Add select save folder
- V3 - Add username to LoginInfo
- V2 - Remove string size limit

View File

@ -21,6 +21,7 @@ struct LoginInfoPointer
struct Index
{
uint32_t magic;
uint32_t count;
uint32_t offset;
};

View File

@ -1,5 +1,6 @@
#include <iostream>
#include <fstream>
#include <cstring>
#include "sys.hpp"
#include "buffer.hpp"
@ -85,10 +86,18 @@ int main(int argc, char **argv)
if (decrypted_buffer.taken < sizeof(Index))
{
Index index = {0};
std::memcpy(&index.magic, ".bin", 4);
index.offset = sizeof(Index);
decrypted_buffer.add_end((uint8_t *)&index, sizeof(Index));
}
// check for magic num to see if file is decrypted correcly
if (std::memcmp(decrypted_buffer.buffer, ".bin", 4))
{
printf("Worong password!!");
return 1;
}
std::optional<LoginInfoPointer> login_info;
switch (args)