feat: dump iw3 xbox signed fastfile data

This commit is contained in:
Michael Oliver
2025-12-15 22:27:40 +00:00
parent 8573f1ef32
commit 67372025b4
3 changed files with 141 additions and 1 deletions
+27
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;