AES
AES is perhaps the only algorithm Sony did not modify for their use in PlayStation Home, and instead follows the standard specification.
Keys
Core
Used for the game’s CORE archives, such as:
COREDATA.SHARCBASIC_APARTMENT.SHARCSHADERS.SHARC
const CORE_KEY: [u8; 32] = [
0x2F, 0x5C, 0xED, 0xA6, 0x3A, 0x9A, 0x67, 0x2C, 0x03, 0x4C, 0x12, 0xE1, 0xE4, 0x25, 0xFA, 0x81,
0x16, 0x16, 0xAE, 0x1C, 0xE6, 0x6D, 0xEB, 0x95, 0xB7, 0xE6, 0xBF, 0x21, 0x40, 0x47, 0x02, 0xDC,
];Content
Used for archives fetched from the Content Delivery Network (CDN).
Warning
The provided key is the stock key found in Sony’s CDN. The TSS file is what controls which key the game will use!
const CONTENT_KEY: [u8; 32] = [
0xF1, 0xBF, 0x6A, 0x4F, 0xBB, 0xBA, 0x5D, 0x0E, 0xD2, 0x7F, 0x41, 0x8A, 0x48, 0x88, 0xAF, 0x30,
0x47, 0x86, 0xEC, 0xD4, 0x4E, 0x2D, 0x36, 0x46, 0x80, 0xDB, 0x4D, 0xF2, 0x22, 0x3A, 0x9F, 0x56,
];Last updated on