add magic num
to be able to see if file is decrypted corecly
This commit is contained in:
parent
7e3bd98ab9
commit
e30bbe5ce1
@ -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
|
||||
|
@ -21,6 +21,7 @@ struct LoginInfoPointer
|
||||
|
||||
struct Index
|
||||
{
|
||||
uint32_t magic;
|
||||
uint32_t count;
|
||||
uint32_t offset;
|
||||
};
|
||||
|
9
main.cpp
9
main.cpp
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user