I now have the deployment package...

and I am confused..

Under section


Generating a Certificate Signing Request, OpenSSL it says:


"Create PKCS#12 file (optional step)
openssl pkcs12 -inkey privatekey.pem -in cert.pem -aes256 -export -out cert.p12"


What file is the cert.pem file, the one I got back from Apple after sending in the certreq.csr file?


If that the case the only thing I get when doing :

openssl pkcs12 -inkey privatekey.pem -in fairplay.cer -aes256 -export -out cert.p12


is

No certificate matches private key


BETTER INSTRUCTIONS APPLE , this sdk is horrible!!"!



Replies

Hi, the Apple Fairplay cert is in not in the correct format to run as per Apple FP guide.

Convert the cer to der and re-run that command should work


openssl x509 -inform der -in fairplay.cer -out cert.pem