/**
* 3DES加解密
*/
public class DESedeUtils {
private static final String ALGORITHM_MD5 = "md5";
private static final String ALGORITHM_DESEDE = "DESede";//加密算法,可用 DES,DESede,Blowfish
private static final String CHARSET = "UTF-8";
public static void main(String[] args) throws Exception {
byte[] key = get3DESKeyBytes("123456");
byte[] source = "12345678".getBytes(CHARSET);
byte[] source1 = "0123456789123456".getBytes(CHARSET);
byte[] source2 = "1".getBytes(CHARSET);
test(source, key);
test(source1, key);
test(source2, key);
}
private static void test(byte[] source, byte[] key) throws Exception {
//生成的密文
byte[] cryptograph = encryptOrDecrypt(source, key, Cipher.ENCRYPT_MODE);
//通过Base64编码为ASCII字符后传输
String cryptographStr = Base64.getEncoder().encodeToString(cryptograph);
//收到后先用Base64解码
byte[] targetBase64 = Base64.getDecoder().decode(cryptographStr.getBytes(CHARSET));
// 解密密文
byte[] target = encryptOrDecrypt(targetBase64, key, Cipher.DECRYPT_MODE);
System.out.println("加密前【" + new String(source, CHARSET) + "】\n加密后【" + cryptographStr + "】\n解密后【" + new String(target, CHARSET) + "】");
System.out.println("加密前字节数【" + source.length + "】加密后字节数【" + cryptograph.length + "】解密后字节数【" + target.length + "】\n");
}
/**
* 加密或解密。加密和解密用的同一个算法和密钥
* @param src 要加密或解密的数据
* @param key 密钥
* @param mode 加密或解密模式。值请选择Cipher.DECRYPT_MODE或Cipher.ENCRYPT_MODE
* @return 加密或解密后的数据
*/
public static byte[] encryptOrDecrypt(byte[] src, byte[] key, int mode) throws Exception {
Cipher cipher = Cipher.getInstance(ALGORITHM_DESEDE); //负责加密/解密的Cipher工具类
Key key3DES = new SecretKeySpec(key, ALGORITHM_DESEDE); //3DES密钥
cipher.init(mode, key3DES); //加密模式
return cipher.doFinal(src);//按单部分操作加密或解密数据,或者结束一个多部分操作。返回:包含结果的新缓冲区
}
/**
* 根据字符串生成3DES的密钥字节数组<br>
* 注意java的3des为24位密钥(24*8=192bit),c代码的话只要16位(16*8=128bit)
*/
public static byte[] get3DESKeyBytes(String sKey) throws Exception {
//获得指定摘要算法的 MessageDigest 对象
MessageDigest md = MessageDigest.getInstance(ALGORITHM_MD5);
//使用指定的字节更新摘要(继续多部分加密或解密操作,以处理其他数据部分)
md.update(sKey.getBytes(CHARSET));
//获得密文。注意:长度为16而不是32。一个字节(byte)占8位(bit)
byte[] digestOfPassword = md.digest();
//将16位消息摘要数组中的内容,拷贝到一个长度为【24】的数组中
byte[] keyBytes = Arrays.copyOf(digestOfPassword, 24);
//再用前8位数据对应补全后8位
for (int j = 0, k = 16; j < 8;) {
keyBytes[k++] = keyBytes[j++];
}
return keyBytes;
}
}