如何在没有私钥的情况下创建 .p12 或 .pfx 文件? [英] How can I create a .p12 or .pfx file without a private key?

查看:27
本文介绍了如何在没有私钥的情况下创建 .p12 或 .pfx 文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试创建一个不包含有效身份(公钥/私钥对)的 .p12 文件,以测试我的应用程序的证书导入功能.是否可以使用 openssl 工具执行此操作?

I'm trying to create a .p12 file that does not contain a valid identity (public key / private key pair) in order to test my app's certificate import functionality. Is it possible to do this with the openssl tool?

我试过了

openssl pkcs12 -in client-certonly.pem -export -out client-certonly.p12

但我收到一个错误:

unable to load private key
471:error:0906D06C:PEM routines:PEM_read_bio:no start line:/SourceCache/OpenSSL098/OpenSSL098-50/src/crypto/pem/pem_lib.c:648:Expecting: ANY PRIVATE KEY

如果使用 openssl 无法做到这一点,我可以使用其他工具吗?

If it isn't possible to do this with openssl, is there another tool I can use?

推荐答案

有一个用 java 编写的非常方便的 GUI 工具,叫做 portecle您可以使用它来创建一个空的 PKCS#12 密钥库,也可以将没有私钥的证书导入到 PKCS#12 密钥库中 - 此功能在导入可信证书 (Ctrl-T)"按钮下可用.

There is a very handy GUI tool written in java called portecle which you can use for creation of an empty PKCS#12 keystore and also for an import of the certificate without the private key into the PKCS#12 keystore - this functionality is available under "Import trusted certificate (Ctrl-T)" button.

但是,如果您坚持使用 OpenSSL,则可以使用以下命令:

However if you insist on using OpenSSL you can use this command:

openssl pkcs12 -export -nokeys -in certificate.cer -out pkcs12.pfx

这篇关于如何在没有私钥的情况下创建 .p12 或 .pfx 文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆