网上关于java用AES加密解密的文章有很多,我这里只用到解密(加密是服务器那边做^_^),所以更简洁一些:

public class AES256Utils {

    private static final String KEY = "xxxx";//从服务器要的密钥

    public static final String CIPHER_ALGORITHM = "AES/ECB/PKCS7Padding";

    /**
* 解密
* @param content
* 待解密内容
* @return
*/
public static byte[] decrypt(byte[] data) throws Exception { Key k = toKey(KEY.getBytes()); Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM); cipher.init(Cipher.DECRYPT_MODE, k); return cipher.doFinal(data);
} private static Key toKey(byte[] key) throws Exception { SecretKey secretKey = new SecretKeySpec(key, "AES"); return secretKey;
}
}

这里有一点要注意,网上都要添加一个类似bcprov-jdk的库和两个policy文件,那是加密时候用的,解密不需要他们。

还有一点注意,一般服务器返回来的加密后数据都是要Base64编码的(否则容易丢失数据,抛出异常:javax.crypto.IllegalBlockSizeException: last block incomplete in decryption)。所以要用Base64解码。

05-11 19:35