0、需要终端生成的 aps.cer
和 aps.p12
文件。
1、把.cer的SSL证书转换为.pem文件,执行命令:
openssl x509 -in aps.cer -inform der -out PushChatCert.pem
2、把私钥aps.p12文件转化为.pem文件:
openssl pkcs12 -nocerts -out PushChatKey.pem -in aps.p12
注:需要输入证书的密码
3、将密钥转换成不需要密码就可以使用的:
openssl rsa -in PushChatKey.pem -out PushChatKeyNoPassword.pem
时间: 2024-10-22 15:16:57