vote up 0 vote down star

Hi I have created my rsa public key in java and send to my friend. My friend is using IPhone, he encrypted data with that key and send me the decrypted data then I decrypted the data with my private key. But I am getting errors for Bad Padding. I and my friend both did not use any padding explicitly for RSA.

Thanks Bapi

flag

13% accept rate
Consider posting code. This may help us help you. – Alex Reynolds May 12 at 4:20

2 Answers

vote up 2 vote down

your question is unclear it was decrypted twice?

editing for your edit: you're still wrong, you may want to read up on how public key cryptography works before asking questions about your specific implementation. it sounds like you are very unfamiliar with the process

link|flag
vote up 0 vote down

It might help if you posted explicit code, how the message is encrypted and decrypted. Even if you don't use padding explicitly a good crypto library uses some padding with RSA such as for example RSA-PKCS #1. RSA just isn't secure without padding. If the paddings that two libraries use don't match you'll be out of luck. Furthermore, you have to check how the output was formatted. I.e. if your friend sends you base64 encoded text, you have to revert that as well before decrypting.

link|flag

Your Answer

Get an OpenID
or

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