Bump version to v1.4.0
This commit is contained in:
parent
82bea6be8f
commit
2c79f8c660
2
Makefile
2
Makefile
|
@ -10,7 +10,7 @@ include $(DEVKITARM)/base_rules
|
||||||
|
|
||||||
IPL_LOAD_ADDR := 0x40003000
|
IPL_LOAD_ADDR := 0x40003000
|
||||||
LPVERSION_MAJOR := 1
|
LPVERSION_MAJOR := 1
|
||||||
LPVERSION_MINOR := 3
|
LPVERSION_MINOR := 4
|
||||||
LPVERSION_BUGFX := 0
|
LPVERSION_BUGFX := 0
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
|
@ -290,6 +290,7 @@ get_tsec: ;
|
||||||
/* key = unwrap(source, wrapped_key):
|
/* key = unwrap(source, wrapped_key):
|
||||||
key_set(ks, wrapped_key), block_ecb(ks, 0, key, source) -> final key in key
|
key_set(ks, wrapped_key), block_ecb(ks, 0, key, source) -> final key in key
|
||||||
*/
|
*/
|
||||||
|
// TODO: fix bis key generation for newer unpatched consoles
|
||||||
if (_key_exists(device_key)) {
|
if (_key_exists(device_key)) {
|
||||||
se_aes_key_set(8, device_key, 0x10);
|
se_aes_key_set(8, device_key, 0x10);
|
||||||
se_aes_unwrap_key(8, 8, retail_specific_aes_key_source); // kek = unwrap(rsaks, devkey)
|
se_aes_unwrap_key(8, 8, retail_specific_aes_key_source); // kek = unwrap(rsaks, devkey)
|
||||||
|
|
Loading…
Reference in New Issue