I have a string that's encrypted using some crypto classes in Java (RSA/ECB/PKCS1Padding) and a public key we exchanged in advance.

I want to decrypt that string using our private key and this is the code I have.

 X509Certificate2 cert = new X509Certificate2("c:\\test.pfx", "test");
        string s =               "very long encrypted data";

        RSACryptoServiceProvider privateKeyProvider = (RSACryptoServiceProvider)cert.PrivateKey;

        string decryptedTest = System.Text.Encoding.UTF8.GetString(privateKeyProvider.Decrypt(Convert.FromBase64String(s), true));

I get an exception with error message.

"System.Security.Cryptography.CryptographicException: Error occurred while decoding OAEP padding"

What is that I'm doing wrong?

link|improve this question

78% accept rate
In which line do you get the exception? – gdoron Dec 19 '11 at 19:05
feedback

2 Answers

up vote 0 down vote accepted

Call Decrypt with the second parameter set to false. MSDN

...false to use PKCS#1 v1.5 padding.

link|improve this answer
I figured it out but, I will give you the credit. I appreciate your time. – Broken Link Dec 19 '11 at 19:07
You're welcome :) – kol Dec 19 '11 at 19:09
feedback

This is the working code.

 X509Certificate2 cert = new X509Certificate2("c:\\test.pfx", "test");
    string s =               "very long encrypted data";

    RSACryptoServiceProvider privateKeyProvider = (RSACryptoServiceProvider)cert.PrivateKey;

    string decryptedTest = System.Text.Encoding.UTF8.GetString(privateKeyProvider.Decrypt(Convert.FromBase64String(s), true));
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.