1

I have a .cer file obtained through Xcode and apple developer site that I use to codesign my application on OSX. Is it possible to codesign the Windows version of the app with the same .cer file?

4

1 回答 1

0

我想从这篇文章的年龄开始,这对迈克来说已经不再重要了,但其他人可能也在尝试做同样的事情。所以这里是如何:

您需要做的就是将证书及其密钥从 Mac Dev 框中的 Keychain 中导出为 pkcs12(使用扩展名 .pfx),并将其与 windows 框上的 signtool.exe 一起使用。

如果您在执行此操作时遇到问题,可以将密钥和证书导出为 PEM 格式,然后执行以下命令来创建 windows 签名 pfx。

openssl pkcs12 -export -out sign_cert.pfx -inkey your_key.key -in your_cert.pem -certfile your_intermediate_chain.pem
于 2014-12-21T10:15:48.377 回答