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?
|
feedback
|
|
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:
| |||||||
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. | |||||
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.
| |||||||||||
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:
Then use normally with the .NET certificate class such as:
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)
| ||||
|
feedback
|
|
The stuff between the
and
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. | |||
|
feedback
|