123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- package com.fdkankan.common.util;
- import javax.crypto.Cipher;
- import javax.crypto.SecretKey;
- import javax.crypto.SecretKeyFactory;
- import javax.crypto.spec.PBEKeySpec;
- import javax.crypto.spec.PBEParameterSpec;
- import java.security.Key;
- import java.security.SecureRandom;
- public class PasswordUtils {
- public static char[] arr = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};
- /**
- * JAVA6支持以下任意一种算法 PBEWITHMD5ANDDES PBEWITHMD5ANDTRIPLEDES
- * PBEWITHSHAANDDESEDE PBEWITHSHA1ANDRC2_40 PBKDF2WITHHMACSHA1
- * */
- /**
- * 定义使用的算法为:PBEWITHMD5andDES算法
- */
- public static final String ALGORITHM = "PBEWithMD5AndDES";//加密算法
- public static final String Salt = "63293188";//密钥
- /**
- * 定义迭代次数为1000次
- */
- private static final int ITERATIONCOUNT = 1000;
- /**
- * 获取加密算法中使用的盐值,解密中使用的盐值必须与加密中使用的相同才能完成操作. 盐长度必须为8字节
- *
- * @return byte[] 盐值
- */
- public static byte[] getSalt() throws Exception {
- // 实例化安全随机数
- SecureRandom random = new SecureRandom();
- // 产出盐
- return random.generateSeed(8);
- }
- public static byte[] getStaticSalt() {
- // 产出盐
- return Salt.getBytes();
- }
- /**
- * 根据PBE密码生成一把密钥
- *
- * @param password 生成密钥时所使用的密码
- * @return Key PBE算法密钥
- */
- private static Key getPBEKey(String password) {
- // 实例化使用的算法
- SecretKeyFactory keyFactory;
- SecretKey secretKey = null;
- try {
- keyFactory = SecretKeyFactory.getInstance(ALGORITHM);
- // 设置PBE密钥参数
- PBEKeySpec keySpec = new PBEKeySpec(password.toCharArray());
- // 生成密钥
- secretKey = keyFactory.generateSecret(keySpec);
- } catch (Exception e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- return secretKey;
- }
- /**
- * 加密明文字符串
- *
- * @param plaintext 待加密的明文字符串
- * @param password 生成密钥时所使用的密码
- * @param salt 盐值
- * @return 加密后的密文字符串
- * @throws Exception
- */
- public static String encrypt(String plaintext, String password, byte[] salt) {
- Key key = getPBEKey(password);
- byte[] encipheredData = null;
- PBEParameterSpec parameterSpec = new PBEParameterSpec(salt, ITERATIONCOUNT);
- try {
- Cipher cipher = Cipher.getInstance(ALGORITHM);
- cipher.init(Cipher.ENCRYPT_MODE, key, parameterSpec);
- encipheredData = cipher.doFinal(plaintext.getBytes());
- } catch (Exception e) {
- }
- return bytesToHexString(encipheredData);
- }
- /**
- * 解密密文字符串
- *
- * @param ciphertext 待解密的密文字符串
- * @param password 生成密钥时所使用的密码(如需解密,该参数需要与加密时使用的一致)
- * @param salt 盐值(如需解密,该参数需要与加密时使用的一致)
- * @return 解密后的明文字符串
- * @throws Exception
- */
- public static String decrypt(String ciphertext, String password, byte[] salt) {
- Key key = getPBEKey(password);
- byte[] passDec = null;
- PBEParameterSpec parameterSpec = new PBEParameterSpec(getStaticSalt(), ITERATIONCOUNT);
- try {
- Cipher cipher = Cipher.getInstance(ALGORITHM);
- cipher.init(Cipher.DECRYPT_MODE, key, parameterSpec);
- passDec = cipher.doFinal(hexStringToBytes(ciphertext));
- } catch (Exception e) {
- // TODO: handle exception
- }
- return new String(passDec);
- }
- /**
- * 将字节数组转换为十六进制字符串
- *
- * @param src 字节数组
- * @return
- */
- public static String bytesToHexString(byte[] src) {
- StringBuilder stringBuilder = new StringBuilder("");
- if (src == null || src.length <= 0) {
- return null;
- }
- for (int i = 0; i < src.length; i++) {
- int v = src[i] & 0xFF;
- String hv = Integer.toHexString(v);
- if (hv.length() < 2) {
- stringBuilder.append(0);
- }
- stringBuilder.append(hv);
- }
- return stringBuilder.toString();
- }
- /**
- * 将十六进制字符串转换为字节数组
- *
- * @param hexString 十六进制字符串
- * @return
- */
- public static byte[] hexStringToBytes(String hexString) {
- if (hexString == null || hexString.equals("")) {
- return null;
- }
- hexString = hexString.toUpperCase();
- int length = hexString.length() / 2;
- char[] hexChars = hexString.toCharArray();
- byte[] d = new byte[length];
- for (int i = 0; i < length; i++) {
- int pos = i * 2;
- d[i] = (byte) (charToByte(hexChars[pos]) << 4 | charToByte(hexChars[pos + 1]));
- }
- return d;
- }
- private static byte charToByte(char c) {
- return (byte) "0123456789ABCDEF".indexOf(c);
- }
- /**
- * 模拟前端密码加密
- * @param str
- */
- public static String decycptPasswordWeb(String str){
- int num = 2;
- String front = randomWord(8);
- String middle = randomWord(8);
- String end = randomWord(8);
- String str1 = str.substring(0, num);
- String str2 = str.substring(num);
- return front + str2 + middle + str1 + end ;
- }
- public static String randomWord(Integer min) {
- String str = "";
- Integer range = min;
- // 随机产生
- for (int i = 0; i < range; i++) {
- int pos = (int) Math.round(Math.random() * (arr.length - 1));
- str += arr[pos];
- }
- return str;
- }
- }
|