如何在 RSACryptoServiceProvider .NET 类中指定公钥
我需要使用数字签名签署 xml 文档。我知道 有一种方法可以做到这一点.NET 但我无法理解如何在 RSACryptoServiceProvider 中指定我自己的公钥。我需要基于特殊关键字的公钥。我该怎么做?请帮助我。
I need to sign an xml-doc with digital signature. I know that there is a way to do this in .NET but i cannot understand how to specify my own puplic key in RSACryptoServiceProvider. I need for the public key based on the special keyword. How can i do this? Help me please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于公钥参数,您可以使用 RSAParameters。
如果要从短语中派生密钥,请查找函数PasswordDeriveBytes 此处。
或者,您可以使用 Telnet 或许多 PGP 客户端等应用程序从短语中创建公钥。
For the Public Key Parameters, you can using RSAParameters.
If you want to derive a key out of a phrase, look up the function PasswordDeriveBytes here .
Or, you can use applications such as Telnet or many PGP clients to create a public key out of a phrase.