-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invalid argument(s): Invalid or corrupted pad block #337
Comments
the same issue |
We had the same issue. Downgrading to version 5.0.1 worked for us. |
same issue,need help |
I agree. I had the 5.0.3, with some code to decrypt I was receiving the same issue, but in addition to it, with the sample code in the repo but with a tiny modification to decrypt from plain text, not from an Encrypter object, it simply didn't decrypt, instead it left the same crypted value. |
Same issue, downgrading to 5.0.1 solved it. |
Same issue at 5.0.3 Replaced worked for me. |
Downgrading to 5.0.1 in my new app did not work for me. Now I've left with lots of encrypted data only my old app (also using 5.0.1) can "understand". |
Same problem here |
fixed mine by using the below dependencies: dependencies: dependendependency_overrides: |
Solved by using this solution, but need first uninstall existing app |
The default encryption method is CBC, which requires an initial vector (IV) during encryption. The decryption will fail if provided IV is not the same as the one used in encryption. It seems that For me, saving the IV during encryption (same as the key itself), and load the same IV (through |
same issue I have encrypted data with 5.0.3 and now its not getting decrypted. Any solution to get encrypted data back |
the strange thing is it works fine with some data and not working with others
my app is in production and users is crying now :( :) ,
any solution please ?
The text was updated successfully, but these errors were encountered: