在客户端机器中导入 PFX 文件

发布于 2024-10-27 09:44:32 字数 470 浏览 4 评论 0原文

我们需要在几台客户端计算机上注册我的公司证书。

我已使用以下代码使用 C# 进行注册:

X509Certificate2 certificate = new X509Certificate2("D:\temp.pfx","password");
X509Store store = new X509Store(StoreName.TrustedPublisher,
                                        StoreLocation.LocalMachine);
store.Open(OpenFlags.ReadWrite);
store.Add(certificate);
store.Close();

它工作正常,但我不想将 pfx 文件发送到客户端计算机上。

我应该从 Web 访问该文件还是调用 Web 服务来访问 pfx 文件?

有人可以帮我解决这个问题吗?

We need to register my company certificate on several client machines.

I have used the following code to register using C#:

X509Certificate2 certificate = new X509Certificate2("D:\temp.pfx","password");
X509Store store = new X509Store(StoreName.TrustedPublisher,
                                        StoreLocation.LocalMachine);
store.Open(OpenFlags.ReadWrite);
store.Add(certificate);
store.Close();

It works correctly, but I don't want to ship the pfx file on the client machines.

Should I access the file from the web or call a web service to access the pfx file?

Can any one please help me on this ?

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

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

发布评论

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

评论(1

一抹淡然 2024-11-03 09:44:32

我应该从网络访问该文件/调用网络服务来访问 pfx 文件吗?

只要您发布您的公钥,您就可以按照您喜欢的方式进行操作。

Shall i access the file from the web/ call web service to access the pfx file.

As long as you're publishing your public key, you can do it in whatever way you like.

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