Link to home
Start Free TrialLog in
Avatar of AndyAinscow
AndyAinscowFlag for Switzerland

asked on

Error in Rijndael: padding is invalid and cannot be removed

I'm trying to encrypt/decrypt a file with the managed net crypto class: RijndaelManaged

First I didn't set the padding and could write the data then read the data correctly with the correct password.  I then tested with an incorrect password and got the error (exception) message in the title:
padding is invalid and cannot be removed

Some searching later and found that I ought to set the padding mode.  I have done that (
RMCrypto.Padding = PaddingMode.PKCS7;

Open in new window

)
Still same error with an incorrect password.

More searching and found the recommendation to use FlushFinalBlock.  Done that just before closing the cryptographic stream.  Now on reading I get that error even with the correct password but the data has been decrypted correctly.

What am I doing wrong?
ASKER CERTIFIED SOLUTION
Avatar of sarabande
sarabande
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of AndyAinscow

ASKER

Hi Sara.  I've read various posts about this and all seem to say the following that the error message is due to an incorrect password.
I would have expected that decrypting with an incorrect password would still run smoothly, just result in garbage in the decrypted data - not an exception being thrown when closing the stream.  

CryptoStream cs = new CryptoStream(fs, ....  
where fs is a filestream, same construct used in both encrytion and decryption streams


Are you saying that an exception on stream closure is by design when the password to decrypt is not the same as the encrypt password ?
Avatar of btan
btan

The padding should be part of the encryption as well as decryption. the flush should also be performed. Actually you may also consider Padding=PaddingMode.none; as a try out
https://www.simple-talk.com/blogs/2012/02/28/oh-no-my-paddings-invalid/

Some even stated "When you give the Encrypt/Decrypt functions an empty string" this error msg also appear, you can also check it sample http://www.vbforums.com/showthread.php?748943-Padding-is-invalid-and-cannot-be-removed
I've tried various PaddingModes and do use the FlushFinalBlock before closing the writing stream.
>>I found out that this error happens when you give the Encrypt/Decrypt functions an empty string
from the vbforums link.  Hmmm.  There are some empty strings being encrypted - the data is structured so some parts are empty strings.  I'll give it a try with data that doesn't have any empty strings and if it behaves then there is a smoking gun at that point.  It'll be a while before I can do that test, I'll post an update in a few hours time.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I've got absolutely nowhere.  :-(
I removed empty strings in the test data - still same behaviour.
I've changed various settings until I ran out of ideas of what to change - ho hum.
I changed the data to just one string - it threw an exception on decrypting with the wrong password.
It really does look like this is a 'feature' of the .net classes, at least as I am using them.

The good news is that I can build in exception handling to identify an incorrect password.
I looked thru samples and actually found no other way how an error could be indicated beside throwing an exception. it is strange that the exception was not thrown before closure (I would have thought that when creating the decryptor a wrong key could be detected) but probably this is not possible as there is no input data available at this time. so it is well possible that wrong keys could not be detected before end of decryption (at dispose time I would guess) what would explain the behavior.

Sara
I can understand not throwing an error at the start (unless the key was included in the encrypted data at the start - which might not be a good idea).  What surprises me is it erroring at the end of the decryption when closing the cryptostream (I don't see anything in the documentation about that) rather than finishing without error but just resulting in garbage in the data.  The algorithm is block based - so the size of the output file is 'fixed' to a block multiple - which is what the padding mode is used for.

(I had intended on including a short but unique string identifier at a known location to check if the decrypt had succeeded or had failed with an incorrect password.)


ps.  I could be using it incorrectly so if anyone is certain (code snippet that functions please) that it does not result in an exception with an incorrect password then the question can be re-opened and further investigated.