Reputation: 7214
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!
Upvotes: 1
Views: 375
Reputation: 3194
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.
Upvotes: 0
Reputation: 273621
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
Upvotes: 1
Reputation: 888047
Upvotes: 0