-
Notifications
You must be signed in to change notification settings - Fork 253
相关证书介绍
斯人 edited this page Mar 24, 2015
·
7 revisions
相关证书介绍
用于换取证书的本地私钥文件, 在初次生成 iOS 开发者证书时需要, 基于 rsa
私钥得到作为当前机器的凭证
-
选择 "Request a Certificate From a Certificate Authority…"
-
输入 email 等信息后保存为
.certSigningRequest
文件
$ openssl genrsa -out private.key 2048
$ openssl req -new -sha256 -key private.key -out my.certSigningRequest
由 apple 官方颁发, 用来证明开发者资格的证书文件, cer
证书跟签名绑定只能在签名机器上使用, 如果要迁移机器需要导出为 p12
文件
在 开发者中心 "certificates" 面板中添加 certificate
并上传刚刚生成的 CSR
文件, 获取 ios_development.cer
用于服务端消息推送, 和 App 端的开发打包没有关系
在 开发者中心 "Identifiers" 面板中添加 App ID
并上传刚刚生成的 CSR
文件, 获取 aps_production.cer
p12
证书实际是包含了 cer
证书及私钥信息, 可以分发给团队成员
在 Keychain Access 中找到已经导入的 cer
证书, 点右键导出为 p12
格式
@todo