1

除了 RSA 之外,我在这里是否遗漏了一些明显的东西(我希望是这样),.NET 中是否还有其他使用公钥和私钥的加密方法?

谢谢!

4

4 回答 4

1

Rsa 派生自AsymmetricAlgorithm类

从那里,MSDN 列出了以下派生类:

System.Security.Cryptography.DSA
System.Security.Cryptography.ECDiffieHellman
System.Security.Cryptography.ECDsa
System.Security.Cryptography.RSA
于 2010-09-20T13:34:16.993 回答
0
于 2010-09-20T13:28:05.607 回答
0

http://en.wikipedia.org/wiki/Public-key_cryptography#Examples

于 2010-09-20T13:28:37.267 回答
0

不,你没有错过任何东西。RSA 似乎是在 .NET 中实现的唯一公钥加密方案。DSA 和 ECDSA 是签名方案,Diffie-Hellman 是密钥协商方案。

于 2010-09-23T03:51:50.967 回答