C# 以 pfx 格式导出证书
NET 将证书从证书存储导出到 PFX
文件中。 我尝试使用设置了 X509ContentType.Pfx
标志的 X509certificate2.Export
方法,但不确定如何处理返回的字节数组并将其正确输出到文件。
任何帮助表示赞赏。
NET to export a certificate from the cert store into a PFX
file. I'm trying to use the X509certificate2.Export
method with the X509ContentType.Pfx
flag set, but am unsure how to handle the returned byte array and output it correctly to file.
Any help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从日期来看,您可能已经弄清楚了这一点,但您所要做的就是将返回的字节数组直接写入文件:
Judging by the date, you may have already figured this out, but all you have to do is write the returned byte array directly to a file: