How to read a PEM RSA private key from .NET - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T22:42:17Z http://stackoverflow.com/feeds/question/243646 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/243646/how-to-read-a-pem-rsa-private-key-from-net 4 How to read a PEM RSA private key from .NET Simone 2008-10-28T15:03:37Z 2008-10-30T20:59:52Z <p>Hello, 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?</p> http://stackoverflow.com/questions/243646/how-to-read-a-pem-rsa-private-key-from-net/243685#243685 1 Answer by SoloBold for How to read a PEM RSA private key from .NET SoloBold 2008-10-28T15:14:36Z 2008-10-28T15:14:36Z <p>You might take a look at <a href="http://www.jensign.com/" rel="nofollow">JavaScience's</a> source for <a href="http://www.jensign.com/opensslkey/index.html" rel="nofollow">OpenSSLKey</a>. (<a href="http://www.jensign.com/opensslkey/opensslkey.cs" rel="nofollow">OpenSSLKey.cs</a>)</p> <p>There's code in there that does exactly what you want to do.</p> <p>In fact, they have a lot of crypto source code <a href="http://www.jensign.com/JavaScience/cryptoutils/index.html" rel="nofollow">available here</a>.</p> http://stackoverflow.com/questions/243646/how-to-read-a-pem-rsa-private-key-from-net/243787#243787 1 Answer by João Augusto for How to read a PEM RSA private key from .NET João Augusto 2008-10-28T15:42:03Z 2008-10-29T09:45:28Z <p>Check <a href="http://msdn.microsoft.com/en-us/library/dd203099.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/dd203099.aspx</a></p> <p>under Cryptography Application Block.</p> <p>Don't know if you will get your answer, but it's worth a try.</p> <p><strong>Edit after Comment</strong>.</p> <p>Ok then check this code.</p> <pre><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); } </code></pre> http://stackoverflow.com/questions/243646/how-to-read-a-pem-rsa-private-key-from-net/248662#248662 0 Answer by Rasmus Faber for How to read a PEM RSA private key from .NET Rasmus Faber 2008-10-29T22:26:54Z 2008-10-29T22:26:54Z <p>The stuff between the </p> <pre><code>-----BEGIN RSA PRIVATE KEY---- </code></pre> <p>and </p> <pre><code>-----END RSA PRIVATE KEY----- </code></pre> <p>is the base64 encoding of a PKCS#8 PrivateKeyInfo (unless it says RSA ENCRYPTED PRIVATE KEY in which case it is a EncryptedPrivateKeyInfo).</p> <p>It is not that hard to decode manually, but otherwise your best bet is to P/Invoke to <a href="http://msdn.microsoft.com/en-us/library/aa380208(VS.85).aspx" rel="nofollow">CryptImportPKCS8</a>.</p> http://stackoverflow.com/questions/243646/how-to-read-a-pem-rsa-private-key-from-net/251757#251757 2 Answer by Simone for How to read a PEM RSA private key from .NET Simone 2008-10-30T20:59:52Z 2008-10-30T20:59:52Z <p>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:</p> <pre><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)); </code></pre>