从 cert 文件到 pfx 文件的转换
是否可以将 cert 文件转换为 pfx 文件?我尝试将 cerf 文件导入 IE,但它从未显示在“个人”选项卡下,因此我无法在那里导出。
我正在寻找是否有可用的替代方案。
仅供参考,cerf 文件是通过使用“keytool”创建的,然后导出到证书文件。
Is it possible to convert a cert file to a pfx file? I tried importing my cerf file into IE, but it is never shown under the "personal" tab, thus I cannot export there.
I am looking for if there is alternatives available.
FYI, the cerf file is created by using "keytool" and then doing an export to a cert file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
本文介绍了从 .cer 文件创建 .pfx 文件的两种方法:
您可以通过编程方式执行此操作在 C# 中,通过将字节数组直接写入文件:
通常(如果您使用的是 IE 8)您可能想看看这个答案:
希望对您有帮助。
This article describes two ways of creating a .pfx file from a .cer file:
Programmaticaly you could do so in C# by writing the byte array directly to a file:
And generally (if you're using IE 8) you might want to have a look at this answer on SO:
Hope that helps you.