mirror of
https://github.com/jakcron/nstool
synced 2024-11-22 05:29:30 +00:00
Update SWITCH_KEYS.md to indicate title.keys is now supported.
This commit is contained in:
parent
e205cb6a4f
commit
1d680c2098
1 changed files with 15 additions and 1 deletions
|
@ -203,4 +203,18 @@ nstool <32 char rightsid>.tik
|
||||||
##### Personalised Tickets
|
##### Personalised Tickets
|
||||||
If the ticket is personalised (encrypted with console unique RSA key), NSTool will not support it. You will need to use extract the title key with another tool and pass the encrypted title key directly with the `--titlekey` option.
|
If the ticket is personalised (encrypted with console unique RSA key), NSTool will not support it. You will need to use extract the title key with another tool and pass the encrypted title key directly with the `--titlekey` option.
|
||||||
|
|
||||||
# Title
|
# Title Keys (title.keys)
|
||||||
|
In order for NSTool to decrypt NCA files that use external content keys, the ticket or key data be provided to NSTool. For convience NSTool supports the hactool `title.keys` format. This file can store a dictionary of title keys, so that specifying a ticket or key data manually is not required, provided it is present in `title.keys`. This file must be present in: ___$HOME/.switch/___ .
|
||||||
|
|
||||||
|
## Format
|
||||||
|
* This file is in the format of (rights_id, title_key) pairs, each on their own line.
|
||||||
|
* There is no limit on the number of pairs.
|
||||||
|
* The `;` is the comment indicator. When parsing a file, it is treated as a new line character.
|
||||||
|
* The format is case insensitive
|
||||||
|
|
||||||
|
|
||||||
|
### Example
|
||||||
|
For example if rights id `010003000e1468000000000000000008` had a title key `8fa820b219781d331cca08968e6e5b52`, the row would look like this:
|
||||||
|
```
|
||||||
|
010003000e1468000000000000000008 = 8fa820b219781d331cca08968e6e5b52
|
||||||
|
```
|
Loading…
Reference in a new issue