Keys: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
[[Category:Software]] | [[Category:Software]] | ||
== PS Vita AES Keys == | |||
These are the PS Vita AES Keys. | These are the PS Vita AES Keys. | ||
=== PSP2AesKey === | |||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
!Type | ! Type !! Version !! Length !! AES Key !! Notes | ||
!Version | |||
!Length | |||
!AES Key | |||
!Notes | |||
|- | |- | ||
|Game PKG | | Game PKG || Beta (<1.00) || 0x16 || <code>07F2C68290B50D2C33818D709B60E62B</code> || It's the PSP AES PKG Key (It's on the net, i did't found it) | ||
|- | |||
| Game PKG || (1.00+) || 0x16 || - || - | |||
|- | |||
|Game PKG | |||
|} | |} | ||
== NonVita == | |||
===PSPAesKey=== | |||
Also used on PS Vita for Beta <1.00 packages | |||
//PSP | |||
private byte[] PSPAesKey = new byte[16] { | |||
0x07, 0xF2, 0xC6, 0x82, 0x90, 0xB5, 0x0D, 0x2C, | |||
0x33, 0x81, 0x8D, 0x70, 0x9B, 0x60, 0xE6, 0x2B | |||
}; | |||
===PS3AesKey=== | |||
//PS3 | |||
private byte[] PS3AesKey = new byte[16] { | |||
0x2E, 0x7B, 0x71, 0xD7, 0xC9, 0xC9, 0xA1, 0x4E, | |||
0xA3, 0x22, 0x1F, 0x18, 0x88, 0x28, 0xB8, 0xF8 | |||
}; |
Revision as of 22:30, 17 December 2011
PS Vita AES Keys
These are the PS Vita AES Keys.
PSP2AesKey
Type | Version | Length | AES Key | Notes |
---|---|---|---|---|
Game PKG | Beta (<1.00) | 0x16 | 07F2C68290B50D2C33818D709B60E62B |
It's the PSP AES PKG Key (It's on the net, i did't found it) |
Game PKG | (1.00+) | 0x16 | - | - |
NonVita
PSPAesKey
Also used on PS Vita for Beta <1.00 packages
//PSP private byte[] PSPAesKey = new byte[16] { 0x07, 0xF2, 0xC6, 0x82, 0x90, 0xB5, 0x0D, 0x2C, 0x33, 0x81, 0x8D, 0x70, 0x9B, 0x60, 0xE6, 0x2B };
PS3AesKey
//PS3 private byte[] PS3AesKey = new byte[16] { 0x2E, 0x7B, 0x71, 0xD7, 0xC9, 0xC9, 0xA1, 0x4E, 0xA3, 0x22, 0x1F, 0x18, 0x88, 0x28, 0xB8, 0xF8 };