1. 程式人生 > >java 對字串的加密解密

java 對字串的加密解密

import java.security.Key;
import java.security.spec.AlgorithmParameterSpec;

import javax.crypto.Cipher;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESKeySpec;
import javax.crypto.spec.IvParameterSpec;

import org.apache.commons.lang3.StringUtils;

import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;

/**
 * 加密/解密工具
 * @author ershuai
 * @date 2017年4月18日 上午11:27:36
 */
public class EncryptUtil {

	private final byte[] DESIV = new byte[] { 0x12, 0x34, 0x56, 120, (byte) 0x90, (byte) 0xab, (byte) 0xcd, (byte) 0xef };// 向量

	private AlgorithmParameterSpec iv = null;// 加密演算法的引數介面
	private Key key = null;
	
	private String charset = "utf-8";
	
	/**
	 * 初始化
	 * @param deSkey	金鑰
	 * @throws Exception
	 */
	public EncryptUtil(String deSkey, String charset) throws Exception {
		if (StringUtils.isNotBlank(charset)) {
			this.charset = charset;
		}
		DESKeySpec keySpec = new DESKeySpec(deSkey.getBytes(this.charset));// 設定金鑰引數
		iv = new IvParameterSpec(DESIV);// 設定向量
		SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");// 獲得金鑰工廠
		key = keyFactory.generateSecret(keySpec);// 得到金鑰物件
	}
	
	/**
	 * 加密
	 * @author ershuai
	 * @date 2017年4月19日 上午9:40:53
	 * @param data
	 * @return
	 * @throws Exception
	 */
	public String encode(String data) throws Exception {
		Cipher enCipher = Cipher.getInstance("DES/CBC/PKCS5Padding");// 得到加密物件Cipher
		enCipher.init(Cipher.ENCRYPT_MODE, key, iv);// 設定工作模式為加密模式,給出金鑰和向量
		byte[] pasByte = enCipher.doFinal(data.getBytes("utf-8"));
		BASE64Encoder base64Encoder = new BASE64Encoder();
		return base64Encoder.encode(pasByte);
	}
	
	/**
	 * 解密
	 * @author ershuai
	 * @date 2017年4月19日 上午9:41:01
	 * @param data
	 * @return
	 * @throws Exception
	 */
	public String decode(String data) throws Exception {
		Cipher deCipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
		deCipher.init(Cipher.DECRYPT_MODE, key, iv);
		BASE64Decoder base64Decoder = new BASE64Decoder();
		byte[] pasByte = deCipher.doFinal(base64Decoder.decodeBuffer(data));
		return new String(pasByte, "UTF-8");
	}
	
	public static void main(String[] args) {
		try {
			String test = "ershuai";
			String key = "9ba45bfd500642328ec03ad8ef1b6e75";// 自定義金鑰
			EncryptUtil des = new EncryptUtil(key, "utf-8");
			System.out.println("加密前的字元:" + test);
			System.out.println("加密後的字元:" + des.encode(test));
			System.out.println("解密後的字元:" + des.decode(des.encode(test)));
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}

結果: