mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-13 00:26:35 +00:00
Fix typo in decrypting all keyblobs (thanks @tslater2006 !)
This commit is contained in:
parent
1182ea23a5
commit
c0617982b8
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ int derive_nx_keydata(uint32_t target_firmware, const nx_keyblob_t *keyblobs, ui
|
||||||
set_aes_keyslot(0xD, work_buffer, 0x10);
|
set_aes_keyslot(0xD, work_buffer, 0x10);
|
||||||
|
|
||||||
/* Decrypt all keyblobs. */
|
/* Decrypt all keyblobs. */
|
||||||
for (unsigned int rev = MASTERKEY_REVISION_100_230; rev < MASTERKEY_REVISION_500_CURRENT; rev++) {
|
for (unsigned int rev = 0; rev < MASTERKEY_REVISION_MAX; rev++) {
|
||||||
int ret = decrypt_keyblob(keyblobs, rev, available_revision);
|
int ret = decrypt_keyblob(keyblobs, rev, available_revision);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in a new issue