Reputation: 16184
How to encrypt a text or any other media using RSA cryptography in C# ? .
Do i need to use any external libraries or are there any in-build stuff ? A small sample code will help!
Upvotes: 6
Views: 17010
Reputation: 50858
Use System.Security.Cryptography.RSACryptoServiceProvider.
The linked site contains an example.
Upvotes: 8