vote up 0 vote down star

in continuation of the http://stackoverflow.com/questions/949907/error-occurred-while-decoding-oaep-padding question

I have modified my code and now i am trying this 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("<Textarea rows=10 cols=100>PUBLIC: " + publicKey + "</TextArea>");

Response.Write("<Textarea rows=10 cols=100>PRIVATE: " + privateKey + "</Textarea>");

Response.Write("<BR>Encrypting the string \"HelloThere\" with the public Key:<BR>");

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("<Textarea rows=10 cols=100>Encrypted String: " + EncryptedStr + "</Textarea>");

Response.Write("<BR>Decrypting the Encrypted String with the Private key:<BR>");



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("<Textarea rows=10 cols=100>Decrypted String: " + DecryptedStr + "</Textarea>");

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....

flag

You might have a better chance of getting an answer, it you told us the error message and not just that an error occured. Someone might have run into the same error, and remember what solved the problem. – Accipitridae Jun 5 at 5:57
Please don't post duplicate questions. This belongs at your original post (stackoverflow.com/questions/949907/…). – Matthew Flaschen Jun 5 at 6:00
I also tried Array.Reverse(EncryptedStrAsByt); before Byte[] DecryptedStrAsByt = RSA3.Decrypt(EncryptedStrAsByt, true); but still no results error is same. – Meetu Choudhary Jun 5 at 7:59
I tried posting comment in that question but word limit so i posted new quetion sorry – Meetu Choudhary Jun 5 at 8:00
Error occurred while decoding OAEP padding.Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.Security.Cryptography.CryptographicException: Error occurred while decoding OAEP padding. Source Error: Line 83:Byte[] DecryptedStrAsByt = RSA3.Decrypt(EncryptedStrAsByt, true); – Meetu Choudhary Jun 5 at 8:02
show 5 more comments

3 Answers

vote up 0 vote down

I found the solution My self.

link|flag
vote up 0 vote down check

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 blog

link|flag
vote up 0 vote down

A common mistake is to try to decrypt using the public key.

link|flag

Your Answer

Get an OpenID
or

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