公共& .NET 中除 RSA 之外的私钥
我是否在这里遗漏了一些明显的东西(我希望是),除了 RSA 之外,.NET 中是否还有其他使用公共和公共密钥的加密方法。私钥?
谢谢!
Am I missing something obvious here (I hope I am), besides RSA, are there any other crypto methods in .NET that use a public & private key?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Rsa 派生自类 AmetryAlgorithm
来源MSDN 列出了以下派生类:
Rsa is derived from the class AsymmetricAlgorithm
From there, MSDN lists the following derived classes:
http://en.wikipedia.org/wiki/Public-key_cryptography#Examples
http://en.wikipedia.org/wiki/Public-key_cryptography#Examples
不,你没有错过任何东西。 RSA 似乎是.NET 中实现的唯一公钥加密方案。 DSA 和 ECDSA 是签名方案,Diffie-Hellman 是密钥协商方案。
No. You are not missing anything. RSA appears to be the only public key encryption scheme implemented in .NET. DSA and ECDSA are signature schemes and Diffie-Hellman is a key agreement scheme.