大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全家桶1年46,售后保障稳定
代码如下:
import cn.hutool.core.convert.Convert;
import org.apache.commons.lang3.RandomStringUtils;
import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
import java.nio.charset.Charset;
public class Util {
private static final String key = RandomStringUtils.randomAlphanumeric(24);
/**
* 3DES加密
*
* @param data
* @return
* @throws Exception
*/
public static String encrypt3DES(String data) throws Exception {
//加密
byte key_byte[] = key.getBytes();
SecretKey secretKey = new SecretKeySpec(key_byte, "DESede");
Cipher cipher = Cipher.getInstance("DESede/ECB/PKCS5Padding");
cipher.init(Cipher.ENCRYPT_MODE, secretKey);
byte[] bytes = cipher.doFinal(data.getBytes("utf-8"));
String str = Convert.toHex(bytes);
return str;
}
/**
* 3DES解密
*
* @param data
* @return
* @throws Exception
*/
public static String decrypt3DES(String data) throws Exception {
//解密
byte key_byte[] = key.getBytes();
SecretKey secretKey = new SecretKeySpec(key_byte, "DESede");
Cipher cipher = Cipher.getInstance("DESede/ECB/PKCS5Padding");
cipher.init(Cipher.DECRYPT_MODE, secretKey);
byte[] bytes = cipher.doFinal(Convert.hexToBytes(data));
String hex = Convert.toHex(bytes);
String str = Convert.hexToStr(hex, Charset.forName("utf-8"));
return str;
}
public static void main(String[] args) throws Exception {
String str = "加解密测试!";
System.out.println("随机key-----------> " + key);
String encrypt3DES = encrypt3DES(str);
System.out.println("加密-----------> " + encrypt3DES);
String decrypt3DES = decrypt3DES(encrypt3DES);
System.out.println("解密-----------> " + decrypt3DES);
}
}
运行结果:
随机key-----------> vSEBYEGpBjfTseGyoaiVmUA1
加密-----------> 758d54430aec8c80b1f75b223dd8cd452639f1f1c9464440
解密-----------> 加解密测试!
ps:转载请注明出处
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/213512.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...