公共& .NET 中除 RSA 之外的私钥

发布于 2024-09-24 07:37:46 字数 82 浏览 1 评论 0原文

我是否在这里遗漏了一些明显的东西(我希望是),除了 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 技术交流群。

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

发布评论

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

评论(4

飘过的浮云 2024-10-01 07:37:46

Rsa 派生自类 AmetryAlgorithm

来源MSDN 列出了以下派生类:

System.Security.Cryptography.DSA
System.Security.Cryptography.ECDiffieHellman
System.Security.Cryptography.ECDsa
System.Security.Cryptography.RSA

Rsa is derived from the class AsymmetricAlgorithm

From there, MSDN lists the following derived classes:

System.Security.Cryptography.DSA
System.Security.Cryptography.ECDiffieHellman
System.Security.Cryptography.ECDsa
System.Security.Cryptography.RSA
土豪 2024-10-01 07:37:46
栀梦 2024-10-01 07:37:46

不,你没有错过任何东西。 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.

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