General purpose read/extract tool for Nintendo Switch file formats.
Go to file
2018-06-04 13:38:51 +08:00
.vscode Update VS Code project file. 2018-06-03 16:51:08 +08:00
lib [nx|nstool] Add nro.h and nrr.h. 2018-06-04 12:00:28 +08:00
programs Remove unused function/variable. 2018-06-04 13:38:51 +08:00
.gitignore Update project metadata 2018-04-07 15:56:38 +08:00
KEYS.md Fix typo in KEYS.md 2018-05-11 20:17:55 +08:00
LICENSE Fix typo in license 2018-06-02 02:50:38 +08:00
makefile [ncatool] Add program. Can only process header currently. 2017-07-05 18:58:33 +10:00
NXTools.sln Update VS project files. 2018-06-02 11:17:53 +08:00
NXTools.vcxproj Initial commit of support libraries. 2017-07-03 01:18:59 +10:00
NXTools.vcxproj.filters Initial commit of support libraries. 2017-07-03 01:18:59 +10:00
README.md [nstool] Update readme and help text to reflect present functionality. 2018-06-01 22:35:48 +08:00

NXTools

Tools & Libraries for NX (Nintendo Switch).

License

Tools

  • nstool - read *.npdm, read/extract PartitionFS (PFS0|HFS0) blobs (including *.nsp), read/extract *.xci, read/extract *.nca, read *.cnmt, read *.nso

Libraries

  • libfnd - Foundation library.
  • libcrypto - Cryptographic functions (AES,SHA,RSA). Wrapper for mbedTLS
  • libcompress - Compression algorithms (LZ4). Wrapper for lz4
  • libes - Handling of (NX relevant) eShop file type processing. (eTickets, etc)
  • libnx - Handling of NX file types

Building

On MacOS/Linux/WSL run make.

For Windows, Visual Studio 2017 is supported.

External Keys

Programs/libraries don't embed any keys that are copyright protected. However keys can be imported via a keyset file.

For programs that support it, the keyset file can be provided via the command line (see program usage for details). Alternatively a keyset file located in $HOME/.switch/prod.keys (or $HOME/.switch/dev.keys for dev) will be imported automatically if one is not provided at the command line.

Keyset files are ASCII text files containing one key per line, in the form "key_name = HEXADECIMALKEY". Case and whitespace do not matter, ';' character can be used to insert comments.

See KEYS.md for more details.