码迷,mamicode.com
首页 > 移动开发 > 详细

iOS推送生成服务器端p12文件

时间:2015-06-03 11:14:40      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

    生成服务器端推送p12文件

 

   所需文件:A、开发证书  aps_developer_identity.cer

                 B、本地导出的私钥   :product_push.p12  

                 C、生成证书时用到的请求文件:Push.certSigningRequest                

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

  1. openssl x509 -in aps_production.cer -inform DER -out aps_production_identity.pem -outform PEM 

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

 

  1. openssl pkcs12 -nocerts -out apple_push_notification_production.pem -in product_push.p12  

 

3、创建p12文件

 

  1. openssl pkcs12 -export -in aps_production_identity.pem -inkey apple_push_notification_production.pem -certfile Push.certSigningRequest -name "aps_production_identity" -out aps_production_identity.p12  

iOS推送生成服务器端p12文件

标签:

原文地址:http://www.cnblogs.com/kingbo/p/4548373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!