22

我有大量从 iPhone 开发人员门户导出的“ aps_developer_identity.cer ”证书。它们都是使用相同的证书签名请求和(因此)相同的私钥创建的。如果我只从 Apple Key Chain 导出私钥,那么是否可以获取私钥和​​“aps_developer_identity.cer”并使用 openssl 创建可以在我的(Windows)服务器上使用的合并 p12/pkcs#12 证书.

为了清楚起见,我知道如何通过将私钥和证书一起导出来从钥匙链中获取合并的 p12,但如果可以的话,我想删除所有额外的鼠标点击和输入。

4

3 回答 3

39

我设法解决了这个问题,它只需要包装在一个 shell 脚本中就可以了。我假设您已经下载并重命名了您的“apple_developer_identity.cer”证书,这里我使用“test.cer”,并且您还从钥匙串中导出了您的开发人员密钥,在下面名为“private_dev_key.p12”的示例中。

#convert *.cer (der format) to pem
openssl x509 -in test.cer -inform DER -out test.pem -outform PEM

#convert p12 private key to pem (requires the input of a minimum 4 char password)
openssl pkcs12 -nocerts -out private_dev_key.pem -in private_dev_key.p12

# if you want remove password from the private key
openssl rsa -out private_key_noenc.pem -in private_key.pem

#take the certificate and the key (with or without password) and create a PKCS#12 format file
openssl pkcs12 -export -in test.pem -inkey private_key_noenc.pem -certfile _CertificateSigningRequest.certSigningRequest  -name "test" -out test.p12

注意:如果您认为通过单击几下鼠标和输入文件名可以完成的操作有点冗长,那么请考虑您想要启用通知的 20 个应用程序的情况。每个 App 都有一个开发和生产证书,分别在 4 个月和 12 个月到期。这是一项非常无聊且容易出错的工作......

于 2009-09-22T10:58:40.033 回答
4

这里的工作很棒。感谢您的真正帮助。我在下面的 shell 脚本中添加了可能对其他人有所帮助的脚本。我有几个要处理的键,也想要一个脚本。该脚本将为输出文件输出静态名称(尽管更改起来很简单)。

我希望它可以帮助别人。

示例用法(假设脚本名称):

$ . thisScript request_file.cer priv_key.p12 aps_dev.cer

剧本:

if [ $# -ne 3 ]
then
echo "Error in $0 - Invalid Argument Count"
echo "Syntax: $0 request_cer_file p12_file app_cer_file output_filename"
echo "  - request_cer_file      is the request file you sent to apple"
echo "  - p12_file          is found in your keychain (it's the private key)"
echo "  - app_cer_file          is found on App ID screen from Apple"
else

reqFile=$1
p12File=$2
cerFile=$3

certPEM='apn_cert.pem'
pKeyPEM='apn_pkey.pem'
pKeyNoEncPEM='apn_pkey_noenc.pem'
p12FileOut='apn_cert_key.p12'

# remove old
rm $certPEM
rm $pKeyPEM
rm $pKeyNoEncPEM
rm $p12FileOut

#convert *.cer (der format) to pem
openssl x509 -in $cerFile -inform DER -out $certPEM -outform PEM

#convert p12 private key to pem (requires the input of a minimum 4 char password)
openssl pkcs12 -nocerts -out $pKeyPEM -in $p12File

# if you want remove password from the private key
openssl rsa -out $pKeyNoEncPEM -in $pKeyPEM

#take the certificate and the key (with or without password) and create a PKCS#12 format file
openssl pkcs12 -export -in $certPEM -inkey $pKeyNoEncPEM -certfile $reqFile  -name "apn_identity" -out $p12FileOut

#
#   
#   If all things worked then the following should work as a test
#   openssl s_client -connect gateway.sandbox.push.apple.com:2195 -cert apn_cert.pem -key apn_pkey_noenc.pem 
#
#
echo "Looks like everything was successful"
echo "Test command:"
echo "openssl s_client -connect gateway.sandbox.push.apple.com:2195 -cert apn_cert.pem -key apn_pkey_noenc.pem"
echo
fi
于 2012-05-24T16:33:45.723 回答
-4

您可以直接在钥匙串中制作 p12/pkcs#12 证书。无需执行任何命令。

1.双击从苹果开发网站下载的开发人员/生产证书文件。(它将添加到钥匙串中)

2.我假设您有从导出私钥获得的 .p12 文件

3.转到钥匙串下的我的证书选项卡。

只需单击 APN 的开发/产品证书。它应该显示与之关联的私钥

4.右键单击并以.p12格式导出证书

那是最终的 .p12 文件!

于 2012-08-22T12:09:56.240 回答