iOS推送证书生成步骤

* 把.cer的SSL证书转换为.pem文件,执行命令:

openssl x509 -in aps_development.cer -inform der -out PushChatCert.pem

* 把私钥Push.p12文件转化为.pem文件:

openssl pkcs12 -nocerts -out PushChatKey.pem -in Push.p12

需要输入证书的密码

* 将密钥转换成不需要密码就可以使用的:

openssl rsa -in PushChatKey.pem -out PushChatKeyNoPassword.pem

你可能感兴趣的:(iOS推送证书生成步骤)