消息推送

转自:http://www.cnblogs.com/qq78292959/archive/2012/07/16/2593651.html

这个证书可以通过我们前面生成的两个文件中得到。



1、将aps_developer_identity.cer转换成aps_developer_identity.pem格式



openssl x509 -in aps_developer_identity.cer -inform DER -out aps_developer_identity.pem -outform PEM 


2、将p12格式的私钥转换成pem



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


3、创建p12文件



openssl pkcs12 -export -in aps_developer_identity.pem -inkey Push_Noenc.pem -certfile Push.certSigningRequest -name "aps_developer_identity" -out aps_developer_identity.p12 


这样我们就得到了在.net或java等后台应用程序中使用的证书文件:aps_developer_identity.p12

猜你喜欢

转载自lizhuang.iteye.com/blog/2095919