The Genius of Sappheiros: Weekend PAK: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks |
imported>Ikskoks |
||
| (8 intermediate revisions by the same user not shown) | |||
| Line 19: | Line 19: | ||
num_of_files * | num_of_files * | ||
{ | { | ||
x bytes (char) - file path + null | x bytes (char) - file path + null // path may contain japaneese characters | ||
4 bytes (uint32) - file size | 4 bytes (uint32) - file compressed size | ||
4 bytes (uint32) - | 4 bytes (uint32) - file decompressed size | ||
4 bytes (uint32) - file relative offset | 4 bytes (uint32) - file relative offset | ||
1 byte (bool) - | 1 byte (bool) - flag? | ||
4 bytes (uint32) - | 4 bytes (uint32) - seed? | ||
} | } | ||
| Line 41: | Line 41: | ||
* TOC is encrypted with [https://en.wikipedia.org/wiki/Mersenne_Twister Mersenne Twister algorithm]. | * TOC is encrypted with [https://en.wikipedia.org/wiki/Mersenne_Twister Mersenne Twister algorithm]. | ||
* Some files | * File data is encrypted with XOR (64 bytes key). | ||
* Some files may be compressed with ZLIB. | |||
=== Games === | === Games === | ||
| Line 60: | Line 61: | ||
[[Category:Extension_pak | Extension: pak]] | [[Category:Extension_pak | Extension: pak]] | ||
[[Category:XOR encryption]] | [[Category:XOR encryption]] | ||
[[Category:Custom encryption]] | |||
[[Category:ZLIB compression]] | [[Category:ZLIB compression]] | ||
[[Category:File Format]] | [[Category:File Format]] | ||
Latest revision as of 23:27, 15 December 2021
Back to index | Edit this page
PAK
- Format Type : Archive
- Endian Order : Little Endian
- Signature : None
Format Specifications
// The Genius of Sappheiros: Weekend PAK file format
4 bytes (uint32) - TOC length
// whole TOC is encrypted
4 bytes (uint32) - CRC check value (for TOC data)
num_of_files *
{
x bytes (char) - file path + null // path may contain japaneese characters
4 bytes (uint32) - file compressed size
4 bytes (uint32) - file decompressed size
4 bytes (uint32) - file relative offset
1 byte (bool) - flag?
4 bytes (uint32) - seed?
}
num_of_files *
{
x bytes - file data // encrypted
}
QuickBMS Script
Notes and Comments
- TOC is encrypted with Mersenne Twister algorithm.
- File data is encrypted with XOR (64 bytes key).
- Some files may be compressed with ZLIB.
Games
List of games using this file format:
- Monsters Card
- The Genius of Sappheiros: Weekend (*.PAK)
Compatible Programs