Click here to Skip to main content
15,885,919 members
Articles / Programming Languages / C#

RSA Private Key Encryption

Rate me:
Please Sign up or sign in to vote.
4.89/5 (72 votes)
4 Feb 2012CPOL3 min read 428.1K   45K   172   99
How to encrypt data using a private key in .NET.

RSA Introduction

The RSA (Rivest, Shamir, Adleman) encryption algorithm uses two Keys: Private and Public.

Scenario A

Suppose Alice wants to send a message to Bob (for his eyes only!). She can encrypt the message using the RSA algorithm with Bob's Public Key, which is not a secret (that's why they call it Public…). Once the message is encrypted, nobody can decrypt it, except the one holding the matching Private Key (that is Bob).

Scenario B

The reverse is also true: if Alice would encrypt the message using her own Private Key, Bob (and Eve, and everyone who can access this "encrypted" message) can decrypt it using Alice's Public Key. So, if everybody can decrypt it, what's the point in encrypting the message with a Private Key in the first place? Well, there is a point if Bob wants to make sure that the message has been written by Alice and not by someone else (Eve?).

.NET RSACryptoServiceProvider

The .NET Framework implements the RSA algorithm in the RSACryptoServiceProvider class. The instance of this class lets you create Key pairs, encrypt using a public key, decrypt using a private key (as in the first scenario), sign (sort of the second scenario, but not exactly), and verify the signature.

The Sign method accepts a message (as byte array) and creates a signature for this particular data. In the second scenario, Alice can write a message to Bob, and use this method to get a signature with her own private key. Then, she can send the message to Bob as is (unencrypted) with the signature. To verify the writer ID (Alice), Bob will use the Verify method with Alice's public key as: Verify(aliceMessage, aliceSignature), and he will get "true" if this is the original message written and signed by Alice, or "false" if even one bit has been changed since. This is one useful implementation of private key encryption, but sometimes it's just too complicated. You might want to send just a little message so the receiver can decrypt it and be sure it's from you, without the need to sign and send him both components.

RSA Private Key Encryption

Unfortunately, the RSACryptoServiceProvider class does not provide you this option, so I wrote my own implementation of the RSA algorithm using the basics of the RSACryptoServiceProvider in conjunction with Chew Keong TAN's class: BigInteger (http://www.codeproject.com/KB/cs/biginteger.aspx). At a low level, the RSA algorithm is about implementing mathematical equations on huge (huge) integers, so the BigInteger class is really essential. I couldn't have done it myself.

Using the RSAEncryption Class

The class has six main methods:

C#
void LoadPublicFromXml(string publicPath)
void LoadPrivateFromXml(string privatePath)
byte[] PrivateEncryption(byte[] data)
byte[] PublicEncryption(byte[] data)
byte[] PrivateDecryption(byte[] encryptedData)
byte[] PublicDecryption(byte[] encryptedData) 

I believe the method names are self explanatory. First, you have to create a private / public key pair, using the .NET RSACryptoServiceProvider class. To do that, you just create an instance of this class and then call the appropriate methods, like this:

C#
void LoadPublicFromXml(string publicPath)
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
File.WriteAllText(@"C:\privateKey.xml", rsa.ToXmlString(true));  // Private Key
File.WriteAllText(@"C:\publicKey.xml", rsa.ToXmlString(false));  // Public Key

// Then, you can load those files to RSAEncryption instance:
RSAEncryption myRsa = new RSAEncryption();
myRsa.LoadPrivateFromXml(@"C:\privateKey.xml");
myRsa.LoadPublicFromXml(@"C:\publicKey.xml");

// Once the keys are loaded (if you load a private key, there is no need to
// load the public one) you can start Encrypt / Decrypt data
// using Private / Public keys.
byte[] message = Encoding.UTF8.GetBytes("My secret message");
byte[] encryptMsg = myRsa.PrivateEncryption(message);

byte[] decryptMsg = myRsa.PublicDecryption(encryptMsg);
string originalMsg = Encoding.UTF8.GetString(decryptMsg);
// returns "My secret message"

WinForms Tester Application

To help you get started with the RSAEncryption and the RSACryptoServiceProvider classes, I wrote a WinForms tester application that uses those classes. All you need to do is just play with it a little and read the code-behind.

RSATesterMenu.png

RSATester.jpg

Update: New Version

The new implementation of the RSA Private Encryption has a few advantages:

  1. Bug fix: Added random padding to support 0 bytes prefix data.
  2. Uses the new .NET 4 "BigInteger" struct for math support.
  3. Extension methods implementation: the only class instance needed is RSACryptoServiceProvider.
  4. Better Exceptions and error handling.
  5. UnitTest project added.
  6. Generally, more elegant code (I hope..!).

Using the New Version

C#
string secret = "My secret message";
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(512);  // Key bits length
/*
* Skip the loading part for the RSACryptoServiceProvider will generate
* random Private / Public keys pair, that you can save later with
* rsa.ToXmlString(true);
* 
string key = "private or public key as xml string";
rsa.FromXmlString(key);
*/
// Convert the string to byte array
byte[] secretData = Encoding.UTF8.GetBytes(secret);

// Encrypt it using the private key:
byte[] encrypted = rsa.PrivareEncryption(secretData);

// Decrypt it using the public key
byte[] decrypted = rsa.PublicDecryption(encrypted);
string decString = Encoding.UTF8.GetString(decrypted);  // And back to string
Assert.AreEqual("My secret message", decString);

History

  • 4th August, 2009: Initial post.
  • 5th August, 2009: Improved code to check the state of the uploaded keys before trying to make the encryption / decryption.
  • 1st February, 2012: Improved and fixed new version.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer WonderNet
Israel Israel
I speak three languages: C#, Hebrew and English...
Programming is my work, my hobby and my second love.
I work for an Israeli company named "WonderNet" that deal with digital signature solutions,
combined with Biometrics hand written signature (on a Wacom tablet).
We develop web application as well as client desktop ones,
using the .NET framwork: ASP.NET, C#, SQL-Server and more.
Cryptography is my "thing" since I lay my hand on Simon Singh work of art "The Code Book".

Comments and Discussions

 
AnswerRe: My vote of 1 Pin
Dudi Bedner10-May-14 1:00
Dudi Bedner10-May-14 1:00 
GeneralRe: My vote of 1 Pin
Member 894882119-Dec-14 23:09
Member 894882119-Dec-14 23:09 
GeneralRe: My vote of 1 Pin
Xmen Real 22-Dec-14 22:49
professional Xmen Real 22-Dec-14 22:49 
Question.net 4 and SQL Server 2008 CLR Pin
Hennie114-Apr-14 23:51
Hennie114-Apr-14 23:51 
QuestionPublicDecryption False Pin
chinh sa23-Feb-14 17:03
chinh sa23-Feb-14 17:03 
AnswerRe: PublicDecryption False Pin
Evandro Mazza4-Dec-14 10:37
Evandro Mazza4-Dec-14 10:37 
QuestionHello Pin
KEL33-Aug-13 23:02
KEL33-Aug-13 23:02 
GeneralRe: Hello Pin
KEL33-Aug-13 23:15
KEL33-Aug-13 23:15 
Oh, the more I read, the more I start to believe that your code is what I am looking for...
But why doesn't this work on RSACryptoServiceProvider ??? D'Oh! | :doh:

By the way, I think that it is better if the Random inside your AddPadding() goes to class scope and becomes static.
If Random uses the time of the clock to get initialized you might get the same padding bytes many times (I think).

EDIT :
Yep, here you go (http://msdn.microsoft.com/en-us/library/System.Random.aspx[^]):
The random number generation starts from a seed value. If the same seed is used repeatedly, the same series of numbers is generated. One way to produce different sequences is to make the seed value time-dependent, thereby producing a different series with each new instance of Random. By default, the parameterless constructor of the Random class uses the system clock to generate its seed value, while its parameterized constructor can take an Int32 value based on the number of ticks in the current time. However, because the clock has finite resolution, using the parameterless constructor to create different Random objects in close succession creates random number generators that produce identical sequences of random numbers. The following example illustrates that two Random objects that are instantiated in close succession generate an identical series of random numbers.

Kostas


modified 4-Aug-13 5:38am.

QuestionPublic encryption still possible with new version? Pin
User 175335029-Mar-13 1:19
User 175335029-Mar-13 1:19 
SuggestionInteresting point. Pin
Dudi Bedner2-Apr-13 8:39
Dudi Bedner2-Apr-13 8:39 
QuestionABE Pin
kaliprasad12313-Mar-13 0:14
kaliprasad12313-Mar-13 0:14 
QuestionCertificate Store X509 Pin
drice24-Feb-13 14:01
drice24-Feb-13 14:01 
GeneralVery good piece of soft. Thank you. Pin
robert.com27-Jan-13 5:25
robert.com27-Jan-13 5:25 
QuestionPHP Compatibility Pin
Member 97418469-Jan-13 0:12
Member 97418469-Jan-13 0:12 
AnswerRe: PHP Compatibility Pin
Member 894882119-Dec-14 23:04
Member 894882119-Dec-14 23:04 
Questiongeting some error Pin
Hemant Singh Rautela27-Dec-12 1:48
professionalHemant Singh Rautela27-Dec-12 1:48 
AnswerRe: geting some error Pin
Dudi Bedner27-Dec-12 10:31
Dudi Bedner27-Dec-12 10:31 
GeneralRe: geting some error Pin
Hemant Singh Rautela27-Dec-12 19:46
professionalHemant Singh Rautela27-Dec-12 19:46 
QuestionRSA 2048 Pin
Member 968083413-Dec-12 10:27
Member 968083413-Dec-12 10:27 
AnswerRe: RSA 2048 Pin
Member 968083413-Dec-12 17:05
Member 968083413-Dec-12 17:05 
Questiondecryption Pin
golden duck14-Sep-12 3:06
golden duck14-Sep-12 3:06 
Questionwrong decrypted string... Pin
Member 857509518-Apr-12 8:09
Member 857509518-Apr-12 8:09 
GeneralMy vote of 4 Pin
jasonkz31-Mar-12 21:26
jasonkz31-Mar-12 21:26 
NewsSevere vulnerability found in RSA encryption Pin
knoami4-Feb-12 22:58
knoami4-Feb-12 22:58 
AnswerThe last paragraph on the article Pin
Dudi Bedner7-Feb-12 23:21
Dudi Bedner7-Feb-12 23:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.