Dokończona funkcja generowania pliku HPP która przechowuje array z kluczem deszyfrującym

This commit is contained in:
yanczi 2025-11-02 03:08:45 +01:00
parent 967e1e9c13
commit c234825ac5
4 changed files with 41 additions and 5 deletions

View file

@ -8,6 +8,10 @@
#include <ctime>
#include <iostream>
#include <xxhash.h>
#include <sstream>
#include <iomanip>
#include <algorithm>
#include "DataStruct.h"
class EncryptionManager
@ -28,5 +32,6 @@ private:
bool keyReady;
void generateKeys();
std::string toHex(const std::vector<unsigned char>&);
void saveCppHeadFile(const std::string&);
};