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:
|
# Versions:
|
||||||
|
- V5 - Add support for linux
|
||||||
- V4 - Add select save folder
|
- V4 - Add select save folder
|
||||||
- V3 - Add username to LoginInfo
|
- V3 - Add username to LoginInfo
|
||||||
- V2 - Remove string size limit
|
- V2 - Remove string size limit
|
||||||
|
@ -21,6 +21,7 @@ struct LoginInfoPointer
|
|||||||
|
|
||||||
struct Index
|
struct Index
|
||||||
{
|
{
|
||||||
|
uint32_t magic;
|
||||||
uint32_t count;
|
uint32_t count;
|
||||||
uint32_t offset;
|
uint32_t offset;
|
||||||
};
|
};
|
||||||
|
9
main.cpp
9
main.cpp
@ -1,5 +1,6 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
#include <cstring>
|
||||||
|
|
||||||
#include "sys.hpp"
|
#include "sys.hpp"
|
||||||
#include "buffer.hpp"
|
#include "buffer.hpp"
|
||||||
@ -85,10 +86,18 @@ int main(int argc, char **argv)
|
|||||||
if (decrypted_buffer.taken < sizeof(Index))
|
if (decrypted_buffer.taken < sizeof(Index))
|
||||||
{
|
{
|
||||||
Index index = {0};
|
Index index = {0};
|
||||||
|
std::memcpy(&index.magic, ".bin", 4);
|
||||||
index.offset = sizeof(Index);
|
index.offset = sizeof(Index);
|
||||||
decrypted_buffer.add_end((uint8_t *)&index, 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;
|
std::optional<LoginInfoPointer> login_info;
|
||||||
|
|
||||||
switch (args)
|
switch (args)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user