Skip to content

How to sign IPA? How do I get the CERTIFICATEPATH, PRIVATEKEYPATH and MOBILEPROVISIONPATH? #78

Answered by Dadoum
sleeyax asked this question in Q&A
Discussion options

You must be logged in to vote

I forgot to add an option to dump a certificate from the command line. Aside from that, the full flow is

  • Create a Private Key. With OpenSSL, you can make use of that command: openssl genrsa -out privatekey.pem 2048
  • Create a CSR, "Certificate Sign Request", with your private key. With OpenSSL, you can do openssl req -new -key "privatekey.pem" -out "csr.csr" -subj "/C=NL/ST=STATE/L=LOCAL/O=ORGANIZATION/CN=CN".
  • Then you can submit it with the tool. Now if you list certificates you should see a new certificate.
  • Now you can dump it from the GUI (I forgot to implement a command to dump it from the CLI).
  • Add a new App ID with Sideloader's CLI.
  • Dump the AppID's mobileprovision with the CLI.

Now…

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Answer selected by sleeyax
Comment options

You must be logged in to vote
1 reply
@sleeyax
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants