· 9 years ago · Oct 29, 2016, 07:30 PM
1// Init the Cipher and decrypt the ciphertext 2cipher.init(Cipher.DECRYPT_MODE, secretKey, new IvParameterSpec(iv)); 3byte[] decryptedBytes = 4 cipher.doFinal(encryptedBytes);