This tool updates the .json database files used by Wii U USB Helper.
* This program is not needed for normal operation of Wii U USB Helper, it's mainly intended for development purposes + provides example requests to the Eshop servers
- .NET Framework >= 4.5
- The CICertA client certificate (
ctr-common-1.p12, see Certificate) - The password for the
.p12file
- Build the project
- Copy
ctr-common-1.p12to the build directory - Create a new file in the same location, named
ctr-common-1.pass, which contains the password to thectr-common-1.p12certificate file - Execute this program
- Retrieve
ctr-common-1.crtandctr-common-1.key: - Convert the
.crtand.keyfiles into a.p12file using OpenSSL (choose any password for<YourPassword>, but keep in mind that you will need it later on):
> openssl pkcs12 -export -out ctr-common-1.p12 -inkey ctr-common-1.key -in ctr-common-1.crt -password pass:<YourPassword>
(if you're on Windows, you may need to grab a copy of OpenSSL first)