You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
3.5 KiB
114 lines
3.5 KiB
3 years ago
|
package com.fr.plugin.xx.saml;
|
||
|
|
||
|
import javax.crypto.Cipher;
|
||
|
import javax.crypto.SecretKey;
|
||
|
import javax.crypto.SecretKeyFactory;
|
||
|
import javax.crypto.spec.DESKeySpec;
|
||
|
import java.io.UnsupportedEncodingException;
|
||
|
import java.security.SecureRandom;
|
||
|
|
||
|
/**
|
||
|
* @author xx
|
||
|
* @date 2020/11/11
|
||
|
*/
|
||
|
public class KeysUtil {
|
||
|
|
||
|
private final static String ALGORITHM = "DES";
|
||
|
/**
|
||
|
* 加密
|
||
|
* @param data 未加密数据
|
||
|
* @param key 加密key
|
||
|
* @return
|
||
|
* @throws Exception
|
||
|
*/
|
||
|
public static String encrypt(String data, String key) throws Exception {
|
||
|
|
||
|
byte[] dataBytes = data.getBytes("UTF-8");
|
||
|
|
||
|
byte[] keyBytes = key.getBytes("UTF-8");
|
||
|
|
||
|
// DES算法要求有一个可信任的随机数源
|
||
|
SecureRandom sr = new SecureRandom();
|
||
|
|
||
|
// 从原始密匙数据创建DESKeySpec对象
|
||
|
DESKeySpec dks = new DESKeySpec(keyBytes);
|
||
|
|
||
|
// 创建一个密匙工厂,然后用它把DESKeySpec转换成
|
||
|
// 一个SecretKey对象
|
||
|
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(ALGORITHM);
|
||
|
SecretKey securekey = keyFactory.generateSecret(dks);
|
||
|
|
||
|
// Cipher对象实际完成加密操作
|
||
|
Cipher cipher = Cipher.getInstance(ALGORITHM);
|
||
|
|
||
|
// 用密匙初始化Cipher对象
|
||
|
cipher.init(Cipher.ENCRYPT_MODE, securekey, sr);
|
||
|
|
||
|
// 正式执行加密操作
|
||
|
byte[] bytes = cipher.doFinal(dataBytes);
|
||
|
return byte2hex(bytes);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 解密
|
||
|
* @param data 加密后的数据
|
||
|
* @param key 加密key
|
||
|
* @return
|
||
|
* @throws Exception
|
||
|
*/
|
||
|
public static String decrypt(String data, String key) throws Exception {
|
||
|
|
||
|
byte[] dataBytes = data.getBytes("UTF-8");
|
||
|
byte[] hex2byte = hex2byte(dataBytes);
|
||
|
byte[] keyBytes = key.getBytes("UTF-8");
|
||
|
|
||
|
// DES算法要求有一个可信任的随机数源
|
||
|
SecureRandom sr = new SecureRandom();
|
||
|
|
||
|
// 从原始密匙数据创建一个DESKeySpec对象
|
||
|
DESKeySpec dks = new DESKeySpec(keyBytes);
|
||
|
|
||
|
// 创建一个密匙工厂,然后用它把DESKeySpec对象转换成
|
||
|
// 一个SecretKey对象
|
||
|
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(ALGORITHM);
|
||
|
SecretKey securekey = keyFactory.generateSecret(dks);
|
||
|
|
||
|
// Cipher对象实际完成解密操作
|
||
|
Cipher cipher = Cipher.getInstance(ALGORITHM);
|
||
|
|
||
|
// 用密匙初始化Cipher对象
|
||
|
cipher.init(Cipher.DECRYPT_MODE, securekey, sr);
|
||
|
|
||
|
// 正式执行解密操作
|
||
|
byte[] doFinal = cipher.doFinal(hex2byte);
|
||
|
|
||
|
return new String(doFinal,"UTF-8");
|
||
|
}
|
||
|
|
||
|
private static byte[] hex2byte(byte[] b) throws UnsupportedEncodingException {
|
||
|
if ((b.length % 2) != 0) {
|
||
|
throw new IllegalArgumentException("长度不是偶数");
|
||
|
}
|
||
|
byte[] b2 = new byte[b.length / 2];
|
||
|
for (int n = 0; n < b.length; n += 2) {
|
||
|
String item = new String(b, n, 2, "UTF-8");
|
||
|
b2[n / 2] = (byte) Integer.parseInt(item, 16);
|
||
|
}
|
||
|
return b2;
|
||
|
}
|
||
|
|
||
|
private static String byte2hex(byte[] b) {
|
||
|
StringBuilder bulid = new StringBuilder();
|
||
|
String stmp = "";
|
||
|
for (int n = 0; n < b.length; n++) {
|
||
|
stmp = (Integer.toHexString(b[n] & 0XFF));
|
||
|
if (stmp.length() == 1) {
|
||
|
bulid.append("0").append(stmp);
|
||
|
} else {
|
||
|
bulid.append(stmp);
|
||
|
}
|
||
|
}
|
||
|
return bulid.toString().toUpperCase();
|
||
|
}
|
||
|
}
|