I am trying to decrypt the data in Java which was encrypted in PHP using AES-256-CBC. Decrypt method of Java cipher.doFinal throwing IllegalBlockSizeException. Can anyone help me to resolve this? Banging my head to fix this from the past 2 days. Please let me know if need more info.
     public static String decrypt(String encryptedResult, String secretKey, String iv) {
        String decrypted;
        try {
            byte[] bytes = new BigInteger(encryptedResult.trim(),16).toByteArray();
            Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
            cipher.init(Cipher.DECRYPT_MODE, makeKey(secretKey), makeIv(iv));
            byte[] bytesFinal = cipher.doFinal(bytes);
            decrypted = new String(bytesFinal);
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
        return decrypted;
    }
    static AlgorithmParameterSpec makeIv(String iv) {
        try {
            return new IvParameterSpec(iv.getBytes(StandardCharsets.UTF_8));
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }
    static Key makeKey(String secretKey) {
        return new SecretKeySpec(secretKey.getBytes(), "AES");
    }
