java aes 工具类_JAVA对字符串内容进行AES、DES加密解密工具类

有时候java项目中需要对我们传输的内容进行加密,以确保数据的安全性,所以用到了其中的AES加密解密,不多说,直接上代码,看AES如何对字符串进行加密解密的:

public class AesUtil {

private static final String KEY_ALGORITHM = "AES";

private static final String DEFAULT_CIPHER_ALGORITHM = "AES/ECB/PKCS5Padding";

/**

* AES加密

*

* @param passwd

* 加密的密钥

* @param content

* 需要加密的字符串

* @return 返回Base64转码后的加密数据

* @throws Exception

*/

public static String encrypt(String passwd, String content) throws Exception {

// 创建密码器

Cipher cipher = Cipher.getInstance(DEFAULT_CIPHER_ALGORITHM);

byte[] byteContent = content.getBytes("utf-8");

// 初始化为加密模式的密码器

cipher.init(Cipher.ENCRYPT_MODE, getSecretKey(passwd));

// 加密

byte[] result = cipher.doFinal(byteContent);

//通过Base64转码返回

return Base64.encodeBase64String(result);

}

/**

* AES解密

*

* @param passwd

* 加密的密钥

* @param encrypted

* 已加密的密文

* @return 返回解密后的数据

* @throws Exception

*/

public static String decrypt(String passwd, String encrypted) throws Exception {

//实例化

Cipher cipher = Cipher.getInstance(DEFAULT_CIPHER_ALGORITHM);

//使用密钥初始化,设置为解密模式

cipher.init(Cipher.DECRYPT_MODE, getSecretKey(passwd));

//执行操作

byte[] result = cipher.doFinal(Base64.decodeBase64(encrypted));

return new String(result, "utf-8");

}

/**

* 生成加密秘钥

*

* @return

*/

private static SecretKeySpec getSecretKey(final String password) throws NoSuchAlgorithmException {

//返回生成指定算法密钥生成器的 KeyGenerator 对象

KeyGenerator kg = KeyGenerator.getInstance(KEY_ALGORITHM);

// javax.crypto.BadPaddingException: Given final block not properly padded解决方案

// https://www.cnblogs.com/zempty/p/4318902.html - 用此法解决的

// https://www.cnblogs.com/digdeep/p/5580244.html - 留作参考吧

SecureRandom random = SecureRandom.getInstance("SHA1PRNG");

random.setSeed(password.getBytes());

//AES 要求密钥长度为 128

kg.init(128, random);

//生成一个密钥

SecretKey secretKey = kg.generateKey();

// 转换为AES专用密钥

return new SecretKeySpec(secretKey.getEncoded(), KEY_ALGORITHM);

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值