Skip to content
斯人 edited this page Mar 24, 2015 · 7 revisions

相关证书介绍

CSR(certificate request) 文件

用于换取证书的本地私钥文件, 在初次生成 iOS 开发者证书时需要, 基于 rsa 私钥得到作为当前机器的凭证

生成方法

OSX 系统自带的 Keychain Access

  • 选择 "Request a Certificate From a Certificate Authority…"

  • 输入 email 等信息后保存为 .certSigningRequest 文件

命令行下使用 openssl 生成

$ openssl genrsa -out private.key 2048
$ openssl req -new -sha256 -key private.key -out my.certSigningRequest

ios 开发证书(ios_development.cer)

由 apple 官方颁发, 用来证明开发者资格的证书文件, cer 证书跟签名绑定只能在签名机器上使用, 如果要迁移机器需要导出为 p12 文件

生成方法

开发者中心 "certificates" 面板中添加 certificate 并上传刚刚生成的 CSR 文件, 获取 ios_development.cer

apns 证书(Apple Push Notification Service)

用于服务端消息推送, 和 App 端的开发打包没有关系

生成方法

开发者中心 "Identifiers" 面板中添加 App ID 并上传刚刚生成的 CSR 文件, 获取 aps_production.cer

p12 证书

p12 证书实际是包含了 cer 证书及私钥信息, 可以分发给团队成员

生成方法

Keychain Access 中找到已经导入的 cer 证书, 点右键导出为 p12 格式

Provisioning Profiles

@todo

Clone this wiki locally