在.NET中打开pfx证书容器

发布于 2024-10-12 12:06:34 字数 240 浏览 2 评论 0原文

在哪里可以找到有关开设包含证书的 PFX 商店的信息?我遇到了这个,但是我对 PfxOpen 课程有点不感兴趣。

编辑 - 我有一个使用私钥导出的 pfx 文件。我将其存储在我的数据库中。我希望能够打开 pfx 文件并从该 pfx 文件中包含的证书中读取信息,例如序列号、到期日期等。

Where can I find information on opening a PFX store which contains a certificate? I came across this, however I am kind of loast at the PfxOpen Class.

Edit - I have a pfx file exported with a private key. I am storing that in my database. I want to be able to open the pfx file and read information from the certificate contained in that pfx file, example the serial, expiration date etc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情深如许 2024-10-19 12:06:34

X509Certificate2 cert = new X509Certificate2(文件名, 密码)

从那里您可以看到证书中的内容。 X509Certificate2 有许多重载。一探究竟。

X509Certificate2 cert = new X509Certificate2(filename, password)

from there you can see what's in the cert. the X509Certificate2 has many overloads. check it out.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文