All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.luues.util.encryption.AESUtil Maven / Gradle / Ivy

There is a newer version: 1.3.0.5.RELEASE
Show newest version
package com.luues.util.encryption;

import com.luues.util.SystemUtil;
import com.luues.util.TypeConvert;

import javax.crypto.*;
import javax.crypto.spec.SecretKeySpec;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.net.URLEncoder;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;

/**
 * AES加密解密
 * @author Mr-Wu
 * @version 1.0.0
 * 2016年12月6日
 */
public class AESUtil {

	private static final String PASSWORD = "wudayeshinidie_wxkj_c_n_m";

	public static void main(String[] args) {
		
		String content = "020066";
		//加密  
		System.out.println("加密前:" + content);  
		String encryptResultStr = encrypt(content, "password.cqjsfz.cn");
		System.out.println("加密后:" + encryptResultStr);  
		//解密  
		String decryptResult = decrypt(encryptResultStr, "password.cqjsfz.cn");
		System.out.println("解密后:" + new String(decryptResult));
	}
	
	/**
	 * 加密
	 * 
	 * @param content 需要加密的内容
	 * @param key 秘钥
	 * @return 加密后的内容
	 */
	public static String encrypt(String content, String key) {
		if(TypeConvert.isNull(key)){
			key = PASSWORD;
		}
		if(SystemUtil.isWindows()){
			return windowsEncrypt(content, key);
		}else{
			return linuxEncrypt(content, key);
		}
	}
	
	
	
	/**
	 * 加密 windows
	 * 
	 * @param content 需要加密的内容
	 * @param keys  加密密码
	 * @return 加密后的内容
	 */
	public static String windowsEncrypt(String content, String keys) {
		try {
			KeyGenerator kgen = KeyGenerator.getInstance("AES");
			kgen.init(128, new SecureRandom(keys.getBytes()));
			SecretKey secretKey = kgen.generateKey();
			byte[] enCodeFormat = secretKey.getEncoded();
			SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES");
			Cipher cipher = Cipher.getInstance("AES");// 创建密码器
			byte[] byteContent = content.getBytes("utf-8");
			cipher.init(Cipher.ENCRYPT_MODE, key);// 初始化
			byte[] result = cipher.doFinal(byteContent);
			return URLEncoder.encode(parseByte2HexStr(result), "utf-8"); // 加密
		} catch (NoSuchAlgorithmException e) {
			e.printStackTrace();
		} catch (NoSuchPaddingException e) {
			e.printStackTrace();
		} catch (InvalidKeyException e) {
			e.printStackTrace();
		} catch (UnsupportedEncodingException e) {
			e.printStackTrace();
		} catch (IllegalBlockSizeException e) {
			e.printStackTrace();
		} catch (BadPaddingException e) {
			e.printStackTrace();
		}
		return null;
	}
	
	/**
	 * 加密 linux
	 * 
	 * @param content 需要加密的内容
	 * @param keys 加密密码
	 * @return 加密后的内容
	 */
	public static String linuxEncrypt(String content, String keys) {
		try {
			KeyGenerator kgen = KeyGenerator.getInstance("AES");
			SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG");
		    secureRandom.setSeed(keys.getBytes());
		    kgen.init(128, secureRandom);
		    SecretKey secretKey = kgen.generateKey();
			byte[] enCodeFormat = secretKey.getEncoded();
			SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES");
			Cipher cipher = Cipher.getInstance("AES");// 创建密码器
			byte[] byteContent = content.getBytes("utf-8");
			cipher.init(Cipher.ENCRYPT_MODE, key);// 初始化
			byte[] result = cipher.doFinal(byteContent);
			return URLEncoder.encode(parseByte2HexStr(result), "utf-8"); // 加密
		} catch (NoSuchAlgorithmException e) {
			e.printStackTrace();
		} catch (NoSuchPaddingException e) {
			e.printStackTrace();
		} catch (InvalidKeyException e) {
			e.printStackTrace();
		} catch (UnsupportedEncodingException e) {
			e.printStackTrace();
		} catch (IllegalBlockSizeException e) {
			e.printStackTrace();
		} catch (BadPaddingException e) {
			e.printStackTrace();
		}
		return null;
	}

	/**
	 * 解密
	 * 
	 * @param content 待解密内容
	 * @param key 秘钥
	 * @return 解密后的内容
	 */
	public static String decrypt(String content, String key) {
		if(TypeConvert.isNull(key)){
			key = PASSWORD;
		}
		if(SystemUtil.isWindows()){
			return windowsDecrypt(content, key);
		}else{
			return linuxDecrypt(content, key);
		}
	}
	
	
	
	/**
	 * 解密 window
	 * 
	 * @param contents 待解密内容
	 * @param keys 解密密钥
	 * @return 解密后的内容
	 */
	public static String windowsDecrypt(String contents, String keys) {
		byte[] content = parseHexStr2Byte(contents);
		try {
			KeyGenerator kgen = KeyGenerator.getInstance("AES");
			kgen.init(128, new SecureRandom(keys.getBytes()));
			SecretKey secretKey = kgen.generateKey();
			byte[] enCodeFormat = secretKey.getEncoded();
			SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES");
			Cipher cipher = Cipher.getInstance("AES");// 创建密码器
			cipher.init(Cipher.DECRYPT_MODE, key);// 初始化
			byte[] result = cipher.doFinal(content);
			return URLDecoder.decode(new String(result, "utf-8"), "utf-8");
		} catch (NoSuchAlgorithmException e) {
			e.printStackTrace();
		} catch (NoSuchPaddingException e) {
			e.printStackTrace();
		} catch (InvalidKeyException e) {
			e.printStackTrace();
		} catch (IllegalBlockSizeException e) {
			e.printStackTrace();
		} catch (BadPaddingException e) {
			e.printStackTrace();
		} catch (UnsupportedEncodingException e) {
			e.printStackTrace();
		}
		return null;
	}
	
	
	/**
	 * 解密 linux
	 * 
	 * @param contents 待解密内容
	 * @param keys 解密密钥
	 * @return 解密后的内容
	 */
	public static String linuxDecrypt(String contents, String keys) {
		byte[] content = parseHexStr2Byte(contents);
		try {
			KeyGenerator kgen = KeyGenerator.getInstance("AES");
			SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG");
		    secureRandom.setSeed(keys.getBytes());
		    kgen.init(128, secureRandom);
		    SecretKey secretKey = kgen.generateKey();
			byte[] enCodeFormat = secretKey.getEncoded();
			SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES");
			Cipher cipher = Cipher.getInstance("AES");// 创建密码器
			cipher.init(Cipher.DECRYPT_MODE, key);// 初始化
			byte[] result = cipher.doFinal(content);
			return URLDecoder.decode(new String(result, "utf-8"), "utf-8");
		} catch (NoSuchAlgorithmException e) {
			e.printStackTrace();
		} catch (NoSuchPaddingException e) {
			e.printStackTrace();
		} catch (InvalidKeyException e) {
			e.printStackTrace();
		} catch (IllegalBlockSizeException e) {
			e.printStackTrace();
		} catch (BadPaddingException e) {
			e.printStackTrace();
		} catch (UnsupportedEncodingException e) {
			e.printStackTrace();
		}
		return null;
	}
	
	
	/**
	 * 将二进制转换成16进制
	 * 
	 * @param buf
	 * @return 转换后的内容
	 */
	private static String parseByte2HexStr(byte buf[]) {
		StringBuffer sb = new StringBuffer();
		for (int i = 0; i < buf.length; i++) {
			String hex = Integer.toHexString(buf[i] & 0xFF);
			if (hex.length() == 1) {
				hex = '0' + hex;
			}
			sb.append(hex.toUpperCase());
		}
		return sb.toString();
	}
	
	
	/**
	 * 将16进制转换为二进制
	 * 
	 * @param hexStr
	 * @return 转换后的内容
	 */
	private static byte[] parseHexStr2Byte(String hexStr) {
		if (hexStr.length() < 1)
			return null;
		byte[] result = new byte[hexStr.length() / 2];
		for (int i = 0; i < hexStr.length() / 2; i++) {
			int high = Integer.parseInt(hexStr.substring(i * 2, i * 2 + 1), 16);
			int low = Integer.parseInt(hexStr.substring(i * 2 + 1, i * 2 + 2), 16);
			result[i] = (byte) (high * 16 + low);
		}
		return result;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy