dave wanta
dave wanta

Reputation: 7214

Public & Private Keys in .NET besides RSA

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

Answers (4)

Accipitridae
Accipitridae

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

Henk Holterman
Henk Holterman

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

SLaks
SLaks

Reputation: 888047

Upvotes: 0

Related Questions