Delete CRC. Przywrucono xxHash z pakietu LZ4. Dodano wstępną funkcję henerowania pliku HPP z kluczem i nonce.

This commit is contained in:
yanczi 2025-11-01 22:30:28 +01:00
parent a0a2f3e1d6
commit 967e1e9c13
12 changed files with 66 additions and 83 deletions

View file

@ -7,7 +7,7 @@
#include <fstream>
#include <ctime>
#include <iostream>
#include <boost/crc.hpp>
#include <xxhash.h>
#include "DataStruct.h"
class EncryptionManager
@ -28,5 +28,5 @@ private:
bool keyReady;
void generateKeys();
uint16_t crc16(const std::vector<char>&);
void saveCppHeadFile(const std::string&);
};