I suggest using Coffee-Reading
by Nightkingale instead!
OTPKeySplitter
was basically thrown together for my own use at the time, but I don't know Python so it was incredibly bad code that was copy and pasted many times.
Coffee-Reading
is far better and does the job, so I highly suggest using it instead!
Original README.md
is below:
This script lets you extract various keys from a dumped Wii U OTP, as outlined on the WiiUBrew site.
- Extract your OTP to your SD card by using the following:
- Download the script to a directory.
- Copy the resulting OTP.bin to the directory containing the OTPKeySplitter.py script.
- If you forget to do so or put it in the wrong place before running the script - It will let you know where to put it.
- Install pycrypto somehow. Like
sudo pip install pycrypto
orsudo pip3 install pycrypto
or however else. - Run the script using Python 3.
- This can likely be done by running
python3 OTPKeySplitter.py
- This can likely be done by running
- Use a hex editor to copy out your keys OR grab the key directly from the Keys.txt file.
- Dimok, for the original OTP2SD homebrew that started me on this
- For the unofficial GBATemp thread: Click Here
- The WiiUBrew team that got the list up in the first place.
- Audiosurf for helping shorten the script itself in quite a few places.
- My friends that I've complained about this to.
- Especially those that were great help with helping keep me sane and sanity check me when I needed it!
- Thank you dogcow for giving me the missing
binascii.hexlify(variable).decode('utf-8')
hint that I needed for writing the keys to a text file!