My constants
public static final String AES_ALGORITHM_MODE_PADDING = "AES/CBC/PKCS5Padding";
public static final String AES = "AES";
public static final String PROVIDER = "BC";
Encryption
Cipher aesCipher = Cipher.getInstance(AES_ALGORITHM_MODE_PADDING, PROVIDER);
SecretKeySpec aeskeySpec = new SecretKeySpec(rawAesKey, AES);
aesCipher.init(Cipher.ENCRYPT_MODE, aeskeySpec);
byte[] encryptedData = aesCipher.doFinal(data);
this.iv = Base64.encodeBase64(aesCipher.getIV()); //get hold of the random IV
return encryptedData;
In another class I do Decryption
IvParameterSpec ivspec = new IvParameterSpec(this.iv); //this is already been converted from base64 to raw form.
Cipher aesCipher = Cipher.getInstance(AES_ALGORITHM_MODE_PADDING, PROVIDER);
SecretKeySpec aeskeySpec = new SecretKeySpec(rawAesKey, AES);
aesCipher.init(Cipher.DECRYPT_MODE, aeskeySpec, ivspec);
return aesCipher.doFinal(rawEncryptedLicenseData);
Now when I run this I get a BadPaddingException at doFinal when decrypting, what am I doing wrong? If I remove the CBC/PKCS5Padding and IV stuff and just use AES, it works!