如何让 Silverlight 创建证书并将其存储在本地存储中?

发布于 2024-12-09 00:13:47 字数 100 浏览 0 评论 0原文

我正在尝试在客户端创建 x509 证书,并将其存储在本地存储中,但我在执行此操作时遇到了问题。

创建 x509 证书(自签名或其他)并将其保存到本地存储的正确方法是什么?

I'm trying to create a x509 certificate on the client side, and store it in local storage, but I'm having trouble doing it.

What is the right way to create a x509 Cert (self-signed, or otherwise) and save it into local storage?

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

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

发布评论

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

评论(1

他不在意 2024-12-16 00:13:47

.NET 不提供任何类来允许创建您自己的 X.509 证书。一般来说,大多数人们会调用 CryptoAPI - 但这对于 Silverlight 来说不是(无论如何对于大多数情况)。

Mono 项目提供了 Mono.Security.dll 程序集它在 Windows 下工作(但可能需要一些工作才能在 Silverlight 上构建,因为 .NET 配置文件在加密方面很弱,例如缺乏 RSA)。

无论如何,Mono.Security.dll 包含完全托管的 X-509 相关类(包括 RSAManaged),允许您创建自己的自签名证书。您可以通过查看 Mono 的 找到一些示例代码makecert 工具。

.NET does not provide any class to allow to create your own X.509 certificate. In general most people will p/invoke into CryptoAPI - but this is not an option for Silverlight (for most scenarios anyway).

The Mono project provides a Mono.Security.dll assembly that works under Windows (but might require a bit of work to build on Silverlight since that .NET profile is weak on the crypto side, e.g. lack of RSA).

In any case Mono.Security.dll includes a fully managed X-509 related classes (including RSAManaged) that allows you to create your own, self-signed, certificate. You can find some sample code by looking at Mono's makecert tool.

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