2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-01-25 09:23:03 +00:00

feat: dump iw3 xbox signed fastfile data

This commit is contained in:
Michael Oliver
2025-12-15 21:47:36 +00:00
parent 8573f1ef32
commit 67372025b4
3 changed files with 141 additions and 1 deletions

View File

@@ -11,6 +11,33 @@
namespace IW3
{
struct DB_AuthHash
{
char bytes[32];
};
struct DB_AuthSignature
{
char bytes[256];
};
struct DB_AuthSubHeader
{
char fastfileName[32];
unsigned int reserved;
DB_AuthHash masterBlockHashes[244];
};
struct DB_AuthHeader
{
char magic[8];
unsigned int reserved;
DB_AuthHash subheaderHash;
DB_AuthSignature signedSubheaderHash;
DB_AuthSubHeader subheader;
};
struct ScriptStringList
{
int count;