如何让 Silverlight 创建证书并将其存储在本地存储中?
我正在尝试在客户端创建 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.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.