up vote 8 down vote favorite
6
share [g+] share [fb]

I've got an RSA private key in PEM format, is there a straightforward way to read that from .NET and instantiate an RSACryptoServiceProvider to decrypt data encrypted with the corresponding public key?

link|improve this question

71% accept rate
feedback

5 Answers

up vote 5 down vote accepted

I solved, thanks. In case anyone's interested, bouncycastle did the trick, just took me some time due to lack of knowledge from on my side and documentation. This is the code:

var bytesToDecrypt = Convert.FromBase64String("la0Cz.....D43g=="); // string to decrypt, base64 encoded

AsymmetricCipherKeyPair keyPair; 

using (var reader = File.OpenText(@"c:\myprivatekey.pem")) // file containing RSA PKCS1 private key
    keyPair = (AsymmetricCipherKeyPair) new PemReader(reader).ReadObject(); 

var decryptEngine = new Pkcs1Encoding(new RsaEngine());
decryptEngine.Init(false, keyPair.Private); 

var decrypted = Encoding.UTF8.GetString(decryptEngine.ProcessBlock(bytesToDecrypt, 0, bytesToDecrypt.Length));
link|improve this answer
What is bouncycastle? – WildJoe Feb 5 '11 at 1:31
2  
@WildJoe: Either an inflated habitat for monarchs, or www.bouncycastle.org ;) – das_weezul Mar 30 '11 at 20:20
feedback

You might take a look at JavaScience's source for OpenSSLKey. (OpenSSLKey.cs)

There's code in there that does exactly what you want to do.

In fact, they have a lot of crypto source code available here.

link|improve this answer
Tried, doesn't work, and didn't take the time to go through the code yet, I'd hope there was a simpler solution. – Simone Oct 28 '08 at 15:22
Could you give details on what failed? I took a look at the code, and it seems like it should work. Perhaps you could even post the PEM-file? (If you have a non-sensitive one). – Rasmus Faber Oct 29 '08 at 22:33
feedback

Check http://msdn.microsoft.com/en-us/library/dd203099.aspx

under Cryptography Application Block.

Don't know if you will get your answer, but it's worth a try.

Edit after Comment.

Ok then check this code.

using System.Security.Cryptography;


public static string DecryptEncryptedData(stringBase64EncryptedData, stringPathToPrivateKeyFile) { 
    X509Certificate2myCertificate; 
    try{ 
        myCertificate = newX509Certificate2(PathToPrivateKeyFile); 
    } catch{ 
        throw newCryptographicException("Unable to open key file."); 
    } 

    RSACryptoServiceProvider rsaObj; 
    if(myCertificate.HasPrivateKey) { 
         rsaObj = (RSACryptoServiceProvider)myCertificate.PrivateKey; 
    } else 
        throw newCryptographicException("Private key not contained within certificate."); 

    if(rsaObj == null) 
        returnString.Empty; 

    byte[] decryptedBytes; 
    try{ 
        decryptedBytes = rsaObj.Decrypt(Convert.FromBase64String(Base64EncryptedData), false); 
    } catch { 
        throw newCryptographicException("Unable to decrypt data."); 
    } 

    //    Check to make sure we decrpyted the string 
   if(decryptedBytes.Length == 0) 
        returnString.Empty; 
    else 
        returnSystem.Text.Encoding.UTF8.GetString(decryptedBytes); 
}
link|improve this answer
Nope, it doesn't support any asymmetric algorithms. – Simone Oct 28 '08 at 15:54
This code can't load a PEM rsa private key, it needs a certificate file based on that key, which can be generated, but I would like to avoid that step. – Simone Oct 28 '08 at 16:38
Ok, then tell me where do you have your private key? – João Augusto Oct 28 '08 at 17:02
In a text file in PEM format. – Simone Oct 28 '08 at 17:06
Ok, then check "Edit2" – João Augusto Oct 28 '08 at 19:57
show 2 more comments
feedback

With respect to easily importing the RSA private key, without using 3rd party code such as BouncyCastle, I think the answer is "No, not with a PEM of the private key alone."

However, as alluded to above by Simone, you can simply combine the PEM of the private key (*.key) and the certificate file using that key (*.crt) into a *.pfx file which can then be easily imported.

To generate the PFX file from the command line:

openssl pkcs12 -in a.crt -inkey a.key -export -out a.pfx

Then use normally with the .NET certificate class such as:

using System.Security.Cryptography.X509Certificates;

X509Certificate2 combinedCertificate = new X509Certificate2(@"C:\path\to\file.pfx");

Now you can follow the example from MSDN for encrypting and decrypting via RSACryptoServiceProvider: http://msdn.microsoft.com/en-us/library/system.security.cryptography.x509certificates.x509certificate2.aspx

EDIT: I left out that for decrypting you would need to import using the PFX password and the Exportable flag. (see: BouncyCastle RSAPrivateKey to .NET RSAPrivateKey)

X509KeyStorageFlags flags = X509KeyStorageFlags.Exportable;
X509Certificate2 cert = new X509Certificate2("my.pfx", "somepass", flags);

RSACryptoServiceProvider rsa = (RSACryptoServiceProvider)cert.PrivateKey;
RSAParameters rsaParam = rsa.ExportParameters(true); 
link|improve this answer
feedback

The stuff between the

-----BEGIN RSA PRIVATE KEY----

and

-----END RSA PRIVATE KEY-----

is the base64 encoding of a PKCS#8 PrivateKeyInfo (unless it says RSA ENCRYPTED PRIVATE KEY in which case it is a EncryptedPrivateKeyInfo).

It is not that hard to decode manually, but otherwise your best bet is to P/Invoke to CryptImportPKCS8.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.