Error occurred while decoding OAEP padding - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T21:01:29Z http://stackoverflow.com/feeds/question/954416 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/954416/error-occurred-while-decoding-oaep-padding 0 Error occurred while decoding OAEP padding Meetu Choudhary 2009-06-05T05:48:09Z 2009-10-24T17:23:18Z <p>in continuation of the <a href="http://stackoverflow.com/questions/949907/error-occurred-while-decoding-oaep-padding">http://stackoverflow.com/questions/949907/error-occurred-while-decoding-oaep-padding</a> question</p> <p>I have modified my code and now i am trying this code</p> <pre><code>CspParameters cspParam = new CspParameters(); cspParam = new CspParameters(); cspParam.Flags = CspProviderFlags.UseMachineKeyStore; clsCertificates cc = new clsCertificates(); string a = ""; cc.OpenStoreIE(ref a); cc.SetProperties(); X509Certificate2 cert = new X509Certificate2(); cert = cc.x509_2Cert; RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(cspParam); //to gentrate private and public keys from the certificate rsa.FromXmlString(cert.PublicKey.Key.ToXmlString(false)); String publicKey = rsa.ToXmlString(false); // gets the public key String privateKey = rsa.ToXmlString(true); // gets the private key working if paramter is false if true give error key is not valid for use in specified state Response.Write("&lt;Textarea rows=10 cols=100&gt;PUBLIC: " + publicKey + "&lt;/TextArea&gt;"); Response.Write("&lt;Textarea rows=10 cols=100&gt;PRIVATE: " + privateKey + "&lt;/Textarea&gt;"); Response.Write("&lt;BR&gt;Encrypting the string \"HelloThere\" with the public Key:&lt;BR&gt;"); String str = "HelloThere"; RSACryptoServiceProvider RSA2 = new RSACryptoServiceProvider(cspParam); //---Load the Public key--- RSA2.FromXmlString(publicKey); //working with the folowing line instead of above but i need the keys of he certificte //RSA2.ToXmlString(true); Byte[] EncryptedStrAsByt = RSA2.Encrypt(System.Text.Encoding.Unicode.GetBytes(str), true); String EncryptedStr = System.Text.Encoding.Unicode.GetString(EncryptedStrAsByt); Response.Write("&lt;Textarea rows=10 cols=100&gt;Encrypted String: " + EncryptedStr + "&lt;/Textarea&gt;"); Response.Write("&lt;BR&gt;Decrypting the Encrypted String with the Private key:&lt;BR&gt;"); RSACryptoServiceProvider RSA3 = new RSACryptoServiceProvider(cspParam); //---Load the Private key--- RSA3.FromXmlString(privateKey); //working with the folowing line instead of above but i need the keys of he certificte //RSA3.ToXmlString(true); Byte[] DecryptedStrAsByt = RSA3.Decrypt(EncryptedStrAsByt, true );//Error if true then error is error occured while decoding the OAE$P padding and if false then error is bad key i am using windows xp so it should be true. String DecryptedStr = System.Text.Encoding.Unicode.GetString(DecryptedStrAsByt); Response.Write("&lt;Textarea rows=10 cols=100&gt;Decrypted String: " + DecryptedStr + "&lt;/Textarea&gt;"); </code></pre> <p>The whole is working if i am not using the keys of digital certificate. but if the keys are of digital certificate eroors are there please help me urgently....</p> http://stackoverflow.com/questions/954416/error-occurred-while-decoding-oaep-padding/959073#959073 0 Answer by Meetu Choudhary for Error occurred while decoding OAEP padding Meetu Choudhary 2009-06-06T05:36:47Z 2009-06-06T05:36:47Z <p>I found the solution My self. </p> http://stackoverflow.com/questions/954416/error-occurred-while-decoding-oaep-padding/963696#963696 0 Answer by Meetu Choudhary for Error occurred while decoding OAEP padding Meetu Choudhary 2009-06-08T06:49:23Z 2009-06-08T06:49:23Z <p>Ya sure i am preapring an article on that and soon will publish it on my blog. the inital articles you can fin on my <a href="http://aspnetbymeetu.blogspot.com/" rel="nofollow">blog</a></p> http://stackoverflow.com/questions/954416/error-occurred-while-decoding-oaep-padding/1618561#1618561 0 Answer by rohancragg for Error occurred while decoding OAEP padding rohancragg 2009-10-24T17:23:18Z 2009-10-24T17:23:18Z <p>A common mistake is to try to decrypt using the public key.</p>