Here you can find the source of decrypt(byte[] key, byte[] src)
private static byte[] decrypt(byte[] key, byte[] src) throws Exception
//package com.java2s; import javax.crypto.Cipher; import javax.crypto.spec.SecretKeySpec; public class Main { private static byte[] decrypt(byte[] key, byte[] src) throws Exception { SecretKeySpec skeySpec = new SecretKeySpec(key, "AES"); Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding"); cipher.init(Cipher.DECRYPT_MODE, skeySpec); return cipher.doFinal(src); }// ww w .j a v a 2 s . c o m }