(九) shiro采用AES加密和解密

1 代码

AesEncoding.java

package nufront.shiro.util;

import java.security.Key;

import org.apache.shiro.codec.Hex;
import org.apache.shiro.crypto.AesCipherService;

public class AesEncoding {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		AesCipherService aesCipherService = new AesCipherService();  
		aesCipherService.setKeySize(128); //设置key长度  
		//生成key  
		Key key = aesCipherService.generateNewKey();
		System.out.println("key = " + key);
		String text = "AesEncoding";  
		//加密  
		String encrptText =  aesCipherService.encrypt(text.getBytes(), key.getEncoded()).toHex();  
		//解密  
		String text2 = new String(aesCipherService.decrypt(Hex.decode(encrptText), key.getEncoded()).getBytes());
		System.out.println("原始值 : " + text);
		System.out.println("加密值 : " + encrptText);
		System.out.println("解密值 : " + text2);
		
	}

}


2 结果

key = javax.crypto.spec.SecretKeySpec@173a5
原始值 : AesEncoding
加密值 : d4bbd7b1c184e09996e80e443a5e05c6c9cfc1257d4762105ad08341d32e5ea5
解密值 : AesEncoding



评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值