OKAMI HD / 大神 絶景版 .dds

Textures, recreate headers, conversions, algorithms and parsing of image files
makc_ar
Posts: 1193
Joined: Sun Aug 17, 2014 7:27 pm

OKAMI HD / 大神 絶景版 .dds

Post by makc_ar »

Game: http://store.steampowered.com/app/587620/OKAMI_HD/
Image

Example all .dds: Coming soon
Acewell
Posts: 706
Joined: Fri Aug 08, 2014 1:06 am

Re: OKAMI HD / 大神 絶景版 .dds

Post by Acewell »

your samples look encrypted to me, i know it isn't xor, maybe rotate?, or some other 64 bit
block encryption, i don't know a whole lot about encryption so maybe aluigi can see more. :oops:


edit
apparently they are blowfish encrypted with 256 bit key
http://forum.xentax.com/viewtopic.php?p=136295#p136295

for batch decrypting your samples with ffgriever's tool you can use this bat file :D

Code: Select all

for %%G in ("*.dds") do okami-encdec.exe -id "%%G"

you can open the decrypted dx10 dds with Noesis
also i guess you could use any of the parameters and not just "-id" because he said
pay no mind to the decompression/compression stuff for it was copied from another source.
i just used "-id" here because it was the first i tried and it worked. :)


edit2
thanks to ffgriever for kindly sharing the key, i just made a bms script for fun to decrypt the files with it :D

Code: Select all

# script for QuickBMS http://aluigi.altervista.org/quickbms.htm

encryption blowfish "YaKiNiKuM2rrVrPJpGMkfe3EK4RbpbHw"
get SIZE asize
get NAME basename
get EXT extension
string NAME + _decrypted.
string NAME + EXT
log NAME 0 SIZE
innocentius92
Posts: 1
Joined: Sun Dec 17, 2017 8:22 am

Re: OKAMI HD / 大神 絶景版 .dds

Post by innocentius92 »

Acewell wrote:your samples look encrypted to me, i know it isn't xor, maybe rotate?, or some other 64 bit
block encryption, i don't know a whole lot about encryption so maybe aluigi can see more. :oops:


edit
apparently they are blowfish encrypted with 256 bit key
http://forum.xentax.com/viewtopic.php?p=136295#p136295

for batch decrypting your samples with ffgriever's tool you can use this bat file :D

Code: Select all

for %%G in ("*.dds") do okami-encdec.exe -id "%%G"

you can open the decrypted dx10 dds with Noesis
also i guess you could use any of the parameters and not just "-id" because he said
pay no mind to the decompression/compression stuff for it was copied from another source.
i just used "-id" here because it was the first i tried and it worked. :)


edit2
thanks to ffgriever for kindly sharing the key, i just made a bms script for fun to decrypt the files with it :D

Code: Select all

# script for QuickBMS http://aluigi.altervista.org/quickbms.htm

encryption blowfish "YaKiNiKuM2rrVrPJpGMkfe3EK4RbpbHw"
get SIZE asize
get NAME basename
get EXT extension
string NAME + _decrypted.
string NAME + EXT
log NAME 0 SIZE

Can you help me to decrypt and unpack bin files, from step 0? Is for translate the game to spanish. I need know how to unpack and read the files correctly.
makc_ar
Posts: 1193
Joined: Sun Aug 17, 2014 7:27 pm

Re: OKAMI HD / 大神 絶景版 .dds

Post by makc_ar »

Thanks a lot Acewell
sired22
Posts: 1
Joined: Tue Dec 19, 2017 6:50 am

Re: OKAMI HD / 大神 絶景版 .dds

Post by sired22 »

Just made an account to say thanks, decrypt with tool, explore/export with dragon unpacker, view with noesis. it works at least for dds files, so I'm going to export the ones i want to keep in a more common format.

again thanks guys.