import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESKeySpec;
import javax.crypto.spec.IvParameterSpec;
import java.nio.charset.Charset;
/** DES加密解密工具类
* @Date: 2020/5/19 15:55
*/
public class DesUtil {
/**
* description: 加密
* @param srcStr 字符串
* @param charset 编码
* @param sKey 密匙
* @return
*/
public static String encrypt(String srcStr, Charset charset, String sKey) {
try {
byte[] data = srcStr.getBytes(charset);
byte[] key = sKey.getBytes();
// 初始化向量
IvParameterSpec iv = new IvParameterSpec(key);
DESKeySpec desKey = new DESKeySpec(key);
// 创建一个密匙工厂,然后用它把DESKeySpec转换成securekey
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
SecretKey securekey = keyFactory.generateSecret(desKey);
// Cipher对象实际完成加密操作
Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
// 用密匙初始化Cipher对象
cipher.init(Cipher.ENCRYPT_MODE, securekey, iv);
// 现在,获取数据并加密
// 正式执行加密操作
byte[] buf = cipher.doFinal(data);
return parseByte2HexStr(buf);
} catch (Throwable e) {
e.printStackTrace();
}
return null;
}
/**
* description: 解密
* @param hexStr 加密后字符串
* @param charset 编码
* @param sKey 密匙
* @return
* @throws Exception
*/
public static String decrypt(String hexStr, Charset charset,String sKey) throws Exception {
byte[] src = parseHexStr2Byte(hexStr);
byte[] key = sKey.getBytes();
// 初始化向量
IvParameterSpec iv = new IvParameterSpec(key);
// 创建一个DESKeySpec对象
DESKeySpec desKey = new DESKeySpec(key);
// 创建一个密匙工厂
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
// 将DESKeySpec对象转换成SecretKey对象
SecretKey securekey = keyFactory.generateSecret(desKey);
// Cipher对象实际完成解密操作
Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
// 用密匙初始化Cipher对象
cipher.init(Cipher.DECRYPT_MODE, securekey, iv);
// 真正开始解密操作
byte[] buf = cipher.doFinal(src);
return new String(buf, charset);
}
/**
* 将二进制转换成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;
}
public static void main(String[] arg){
String SKEY = "jcxhpass";
Charset CHARSET = Charset.forName("gb2312");
// 待加密内容
String str = "91110102101102022BTJY";
String encryptResult = DesUtil.encrypt(str, CHARSET, SKEY);
System.out.println(encryptResult);
// 直接将如上内容解密
String decryResult = "";
try {
decryResult = DesUtil.decrypt(encryptResult, CHARSET, SKEY);
} catch (Exception e1) {
e1.printStackTrace();
}
System.out.println(decryResult);
}
}
DES加密解密
最新推荐文章于 2023-08-27 03:30:00 发布