Hi ~!Aluigi.
Can you help me take a look at this encrypted .CCZ and .PLIST File?They are used as Ekey encryption tools for encryption (http://zenhax.com/viewtopic.php?f=9&t=129&hilit=CCZ) but I still couldn't open the normal conversion and PVR after decryption, seem to have a layer of encryption, can you help me take a look at how to open them?Or take their ideas?
.CCZ and .PLIST File:https://www.dropbox.com/s/42gz3j01rg7reze/CCZ.7z?dl=0
BLAZBLUE「ブレイブルー」(.CCZ .PLIST)
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: BLAZBLUE「ブレイブルー」(.CCZ .PLIST)
CCZ is simply compressed with zlib:
Code: Select all
endian big
idstring "CCZ!"
get VER long
get ZERO long
get SIZE long
savepos OFFSET
get ZSIZE asize
math ZSIZE - OFFSET
get NAME basename
clog NAME OFFSET ZSIZE SIZE
-
- Posts: 50
- Joined: Fri Sep 30, 2016 4:12 am
Re: BLAZBLUE「ブレイブルー」(.CCZ .PLIST)
aluigi wrote:CCZ is simply compressed with zlib:Code: Select all
endian big
idstring "CCZ!"
get VER long
get ZERO long
get SIZE long
savepos OFFSET
get ZSIZE asize
math ZSIZE - OFFSET
get NAME basename
clog NAME OFFSET ZSIZE SIZE
Thank you very much! aluigi