3DES加密、解密工具类,有需要的直接cv大法拿去用吧

package 你的类路径;


import cn.hutool.core.codec.Base64;

import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.spec.SecretKeySpec;
import java.security.InvalidKeyException;
import java.security.Key;
import java.security.NoSuchAlgorithmException;

public class BigDataDES3Utils {

/**
* 加密算法
*
* @param clearText
* @param originKey
* @return
* @throws NoSuchAlgorithmException
* @throws NoSuchPaddingException
* @throws InvalidKeyException
* @throws BadPaddingException
* @throws IllegalBlockSizeException
*/
@SuppressWarnings("restriction")
public static String desEncript(String clearText, String originKey) throws Exception {
Cipher cipher = Cipher.getInstance(Algorithm); /* 提供加密的方式:DES */
SecretKeySpec key = getKey(originKey); /* 对密钥进行操作,产生16个48位长的子密钥 */
cipher.init(Cipher.ENCRYPT_MODE,
key); /* 初始化cipher,选定模式,这里为加密模式,并同时传入密钥 */
byte[] doFinal = cipher.doFinal(clearText.getBytes()); /* 开始加密操作 */
return Base64.encode(doFinal); /* 对加密后的数据按照Base64进行编码 */
}

/**
* 解密算法
*
* @param cipherText 解密文本内容
* @param originKey 解密密码
* @return
* @throws BadPaddingException
* @throws IllegalBlockSizeException
* @throws NoSuchPaddingException
* @throws NoSuchAlgorithmException
* @throws InvalidKeyException
*/
public static final String Algorithm = "DESede";
public static String desDecript(String cipherText, String originKey) throws Exception {
Cipher cipher = Cipher.getInstance(Algorithm); /* 初始化加密方式 */
Key key = getKey(originKey); /* 获取密钥 */
cipher.init(Cipher.DECRYPT_MODE, key); /* 初始化操作方式 */
@SuppressWarnings("restriction")
byte[] decode = Base64.decode(cipherText); /* 按照Base64解码 */
byte[] doFinal = cipher.doFinal(decode); /* 执行解码操作 */
return new String(doFinal); /* 转换成相应字符串并返回 */
}

public static void main(String[] args) throws Exception {
String st = "你的密文";
//解密
System.out.println(desDecript(st,"你的密码"));

}

/**
* 获取密钥算法
*
* @param originKey
* @return
*/
public static SecretKeySpec getKey(String originKey) {
byte[] buffer = new byte[24];
byte[] originBytes = originKey.getBytes();
/**
* 防止输入的密钥长度超过192位
*/
for (int i = 0; i < 24 && i < originBytes.length; i++) {
buffer[i] = originBytes[i]; /* 如果originBytes不足8,buffer剩余的补零 */
}
/* 第一个参数是密钥字节数组,第二个参数是加密方式 */
return new SecretKeySpec(buffer, Algorithm); /* 返回操作之后得到的密钥 */
}
}
posted @ 2024-05-20 17:35  小年的西瓜  阅读(112)  评论(0编辑  收藏  举报