Created
June 13, 2024 08:39
-
-
Save leonid-shevtsov/098df0ecef0769cd98633b3d226b2094 to your computer and use it in GitHub Desktop.
ImHex protocol description for Chromium Pickle data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct PickleString { | |
u32 length; | |
char16 chars[length]; | |
char16 zeroChar; | |
}; | |
struct PickleEntry { | |
PickleString key; | |
PickleString value; | |
}; | |
struct PickleFile { | |
u32 payloadSize; | |
u32 entryCount; | |
PickleEntry entries[entryCount]; | |
}; | |
PickleFile file @ 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment