iOS应用合成.pem证书

以下内容是iOS应用合成.pem证书的详细流程

1、建对应appid 的推送证书,设置证书名字全称:aps_production.cer ,导入钥匙串。

2、单独导出密钥、单独导出密钥、单独导出密钥(重要的说三遍)文件名字为:证书.p12 。

3、打开终端,输入 cd desktop

4、输入 :    openssl x509 -in aps_production.cer -inform der -out cert.pem

5、openssl pkcs12 -nocerts  -out temKey.pem -in 证书.p12

6、openssl rsa -in temKey.pem -out key.pem

7、我们要保留的是 (1)、key.pem  (2)、cert.pem  删除 temKey.pem 文件

8、单独导出证书(这次不需要密钥)。

9、总结一下,我们需要的四个文件: (1)、appid 对应的预制描述文件 (2)、单独导出的证书  (3)、key.pem  (4)、cert.pem

你可能感兴趣的:(iOS应用合成.pem证书)