需要导入Base64.jar包

import java.io.IOException;
import java.security.SecureRandom; import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESKeySpec; import Decoder.BASE64Decoder;
import Decoder.BASE64Encoder; public class Des { private final static String DES = "DES"; public static void main(String[] args) throws Exception {
String data = "强大的黑马51期";
String key = "wang!@#$%";
System.err.println(encrypt(data, key));
// System.err.println(decrypt(encrypt(data, key), key));
} /**
* Description 根据键值进行加密
* @param data
* @param key 加密键byte数组
* @return
* @throws Exception
*/
public static String encrypt(String data, String key) throws Exception {
byte[] bt = encrypt(data.getBytes(), key.getBytes());
String strs = new BASE64Encoder().encode(bt);
return strs;
} /**
* Description 根据键值进行解密
* @param data
* @param key 加密键byte数组
* @return
* @throws IOException
* @throws Exception
*/
public static String decrypt(String data, String key) throws IOException, Exception {
if (data == null)
return null;
BASE64Decoder decoder = new BASE64Decoder();
byte[] buf = decoder.decodeBuffer(data);
byte[] bt = decrypt(buf, key.getBytes());
return new String(bt);
} /**
* Description 根据键值进行加密
* @param data
* @param key 加密键byte数组
* @return
* @throws Exception
*/
private static byte[] encrypt(byte[] data, byte[] key) throws Exception {
// 生成一个可信任的随机数源
SecureRandom sr = new SecureRandom(); // 从原始密钥数据创建DESKeySpec对象
DESKeySpec dks = new DESKeySpec(key); // 创建一个密钥工厂,然后用它把DESKeySpec转换成SecretKey对象
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(DES);
SecretKey securekey = keyFactory.generateSecret(dks); // Cipher对象实际完成加密操作
Cipher cipher = Cipher.getInstance(DES); // 用密钥初始化Cipher对象
cipher.init(Cipher.ENCRYPT_MODE, securekey, sr); return cipher.doFinal(data);
} /**
* Description 根据键值进行解密
* @param data
* @param key 加密键byte数组
* @return
* @throws Exception
*/
private static byte[] decrypt(byte[] data, byte[] key) throws Exception {
// 生成一个可信任的随机数源
SecureRandom sr = new SecureRandom(); // 从原始密钥数据创建DESKeySpec对象
DESKeySpec dks = new DESKeySpec(key); // 创建一个密钥工厂,然后用它把DESKeySpec转换成SecretKey对象
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(DES);
SecretKey securekey = keyFactory.generateSecret(dks); // Cipher对象实际完成解密操作
Cipher cipher = Cipher.getInstance(DES); // 用密钥初始化Cipher对象
cipher.init(Cipher.DECRYPT_MODE, securekey, sr); return cipher.doFinal(data);
}
}

最新文章

  1. BZOJ4597: [Shoi2016]随机序列
  2. PHP中spl_autoload_register()函数的用法
  3. Macaca开源--阿里的移动自动化测试框架
  4. cluster,network
  5. c/c++中动态内存分配处理字符串的细节问题
  6. 使AspNetPager控件中文显示分页信息
  7. Android学习总结——Service组件
  8. DedeCms 建站随笔(一)
  9. Plugin execution not covered by lifecycle configuration的解决方案
  10. 查看apache,mysql,nginx,php的编译参数
  11. Json简介1
  12. Runtime.addShutdownHook的用法
  13. dojo实现省份地市级联报错(二)
  14. sass语法练习解析--实例练习
  15. [模版]平衡树splay2
  16. EntityFramework扩展之第三方类库
  17. 【struts2】<s:url>标签
  18. RAC7——vip的理解
  19. ksyun主机挂载ksyun硬盘
  20. JavaScript的迭代函数与迭代函数的实现

热门文章

  1. 接收端通过Request.InputStream读取流
  2. PXC节点启动与关闭
  3. freeertos中关于PendSV中断服务函数的解析
  4. Hadoop_27_MapReduce_运营商原始日志增强(自定义OutputFormat)
  5. DA_01_linux_物理机局域网工作机制
  6. JavaScript 转换数字为整数的方法
  7. 洛谷P1080 国王游戏【大数】【贪心】
  8. Spring Boot 前期篇
  9. [RxJS] RxJS Advanced Patterns Operate Heavily Dynamic UIs
  10. 题解 [51nod1673] 树有几多愁