-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
30 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
hactool currently recognizes the following keys (## represents a hexadecimal number between 00 and 1F): | ||
|
||
``` | ||
master_key_## : The ##th Firmware Master Key. Obtainable with TrustZone code execution. | ||
package1_key_## : The ##th Package1 key. Obtainable with Package1ldr code execution. | ||
package2_key_## : The ##th Package2 key. Derivable from master_key_## and package2_key_source. | ||
titlekek_## : The ##th Titlekek. Derivable from master_key_## and titlekek_source. | ||
package2_key_source : Found in TrustZone .rodata. | ||
titlekek_source : Found in TrustZone .rodata. | ||
aes_kek_generation_source : Found in TrustZone .rodata. | ||
aes_key_generation_source : Found in TrustZone .rodata. | ||
key_area_key_application_source : Found in FS .rodata. | ||
key_area_key_ocean_source : Found in FS .rodata. | ||
key_area_key_system_source : Found in FS .rodata. | ||
header_kek_source : Found in FS .rodata. | ||
header_key_source : Found in FS .rodata. | ||
header_key : Derivable from master_key_##, header sources, and aes generation sources. | ||
key_area_key_application_## : Derivable from master_key_##, key_area_key_application_source, and aes generation sources. | ||
key_area_key_ocean_## : Derivable from master_key_##, key_area_key_ocean_source, and aes generation sources. | ||
key_area_key_system_## : Derivable from master_key_##, key_area_key_system_source, and aes generation sources. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
#ifndef HACTOOL_VERSION_H | ||
#define HACTOOL_VERSION_H | ||
|
||
/* Will become 1.0 when BKTR is implemented and I've done some refactoring... */ | ||
#define HACTOOL_VERSION "0.9" | ||
#define HACTOOL_VERSION "1.0" | ||
|
||
#endif |