last block incomplete with CipherInputStream/CipherOutputStream, even with padding AES/CBC/PKCS5Padding
Actually, I searched lot from internet and in stackoverflow too for this, Initially I don't used padding in my encryption and decryption, But Finally I got solution from here https://stackoverflow.com/a/10775577/1115788 and I updated my code with padding as AES/CBC/PKCS5Padding and the same error is coming, and last block is not decrypted... I'm working on this for last two day, but no solution found my Crypter Code: package mani.droid.browsedropbox; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.math.BigInteger;