Editing PSSE
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 4: | Line 4: | ||
PSSE stands for PlayStation Suite Encrypted. It is an encryption layer that encrypts the PSM game's filesystem. | PSSE stands for PlayStation Suite Encrypted. It is an encryption layer that encrypts the PSM game's filesystem. | ||
The encryption layer is comparable to the PS Vita | The encryption layer is comparable to the PS Vita [[Filesystem]] in many ways; however, it seemed that there was a bug at Sony, where besides executable files, the first directory level of a PSM app is not encrypted with PSSE, whose directory level is below the root of RO/. Similarly, the PSM SaveData is not encrypted by such layer either. | ||
== Data Structure == | == Data Structure == | ||
{| class="wikitable" style="font-size:small; text-align: center;border;" | {| class="wikitable" style="font-size:small; text-align: center;border:3px ridge #123AAA;" | ||
|- | |- | ||
|'''offset''' | | style="background-color:#FFFFFF; color:#123AAA;" |'''offset''' | ||
|'''value''' | | style="background-color:#FFFFFF; color:#123AAA;" |'''value''' | ||
|'''description''' | | style="background-color:#FFFFFF; color:#123AAA;" |'''description''' | ||
|- | |- | ||
|0x00||0x50535345 (ASCII "PSSE | |0x00||0x50535345 (ASCII "PSSE")||Magic Number / File Header | ||
|- | |- | ||
| | |0x14||[[System_File_Object_(SFO)_(PSF)#CONTENT_ID|CONTENT_ID]]||Contents of /RW/System/content_id | ||
|- | |- | ||
| | |0x40||Signature||Generated by PSMSDK 'publisher key'? - Similar to sce_sys/[[clearsign]] file of NpDrm-Encrypted apps | ||
|- | |- | ||
| | |0x180||Encrypted Keys||Generated by PSMSDK 'app key' and 'app seed'? - Similar to sce_sys/[[keystone]] file of NpDrm-Encrypted apps | ||
|- | |- | ||
| | |0x680||Encrypted Data||Actual cipher-text for the encrypted file | ||
|- | |||
|- | |- | ||
|} | |} | ||
== Decryption == | == Decryption == | ||
PSSE Can be decrypted using the http://bitbucket.org/SilicaAndPina/FuckPSSE plugin by [[SilicaAndPina]] | |||