Java常用对称加密算法-DES
程序员文章站
2024-03-14 14:21:22
...
直接上代码
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import java.security.SecureRandom;
import java.util.Base64;
/**
* DES 加解密工具类
*
* @author lixk
*/
public class DES {
//加解密算法名称
private static final String ALGORITHM = "DES";
//字符编码
private static final String CHARSET = "UTF-8";
/**
* 生成秘钥
*
* @param password 加解密的密码
* @return
* @throws Exception
*/
private static SecretKey getSecretKey(String password) throws Exception {
//获取**生成器
KeyGenerator keyGenerator = KeyGenerator.getInstance(ALGORITHM);
//初始化秘钥生成器,DES 生成的秘钥长度必须是 56
SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG");
secureRandom.setSeed(password.getBytes(CHARSET));
keyGenerator.init(56, secureRandom);
//生成**
return keyGenerator.generateKey();
}
/**
* DES 加密
*
* @param data 待加密的数据
* @param password 密码
* @return
* @throws Exception
*/
public static byte[] encrypt(byte[] data, String password) throws Exception {
//创建密码器
Cipher cipher = Cipher.getInstance(ALGORITHM);
//初始化为加密模式的密码器
cipher.init(Cipher.ENCRYPT_MODE, getSecretKey(password));
//返回加密数据
return cipher.doFinal(data);
}
/**
* DES 加密
*
* @param data 待加密的数据
* @param password 密码
* @return
* @throws Exception
*/
public static String encrypt(String data, String password) throws Exception {
return Base64.getEncoder().encodeToString(encrypt(data.getBytes(CHARSET), password));
}
/**
* DES 解密
*
* @param data 待解密的数据
* @param password 密码
* @return
* @throws Exception
*/
public static byte[] decrypt(byte[] data, String password) throws Exception {
//创建密码器
Cipher cipher = Cipher.getInstance(ALGORITHM);
//初始化为解密模式的密码器
cipher.init(Cipher.DECRYPT_MODE, getSecretKey(password));
//返回加密数据
return cipher.doFinal(data);
}
/**
* DES 解密
*
* @param data Base64加密的待解密的数据
* @param password 密码
* @return
* @throws Exception
*/
public static String decrypt(String data, String password) throws Exception {
return new String(decrypt(Base64.getDecoder().decode(data), password), CHARSET);
}
/**
* 测试
*
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
String data = "DES 加解密测试!";
String password = "123456";
String s1 = DES.encrypt(data, password);
System.out.println("加密后的数据:" + s1);
String s2 = DES.decrypt(s1, password);
System.out.println("解密后的数据:" + s2);
}
}
运行结果:
加密后的数据:uzQSod4gIqW7FkVYSeYhFHXNJEsItXDB
解密后的数据:DES 加解密测试!
上一篇: AES 加密解密
下一篇: 【加密解密】-AES加密解密实现