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

@ -21,8 +21,6 @@
#include <cstdint>
#include <string>
#include <boost/crc.hpp>
#define EXTENSION "pak"
#define SIGNATURE "XPAK"
@ -64,6 +62,6 @@ struct FilesTable
uint64_t hashName;
uint64_t offset;
uint32_t size;
uint32_t crc;
uint64_t crc;
uint8_t isZip;
};