赞
踩
DES对称加密,是一种比较传统的加密方式,其加密运算、解密运算使用的是同样的密钥,信息的发送者和信息的接收者在进行信息的传输与处理时,必须共同持有该密码(称为对称密码),是一种对称加密算法。
DES全称Data Encryption Standard,是一种使用密匙加密的块算法。现在认为是一种不安全的加密算法,因为现在已经有用穷举法攻破DES密码的报道了。尽管如此,该加密算法还是运用非常普遍,是一种标准的加密算法。3DES是DES的加强版本。
DES 使用一个 56 位的密钥以及附加的 8 位奇偶校验位,产生最大 64 位的分组大小。这是一个迭代的分组密码,使用称为 Feistel 的技术,其中将加密的文本块分成两半。使用子密钥对其中一半应用循环功能,然后将输出与另一半进行“异或”运算;接着交换这两半,这一过程会继续下去,但最后一个循环不交换。DES 使用 16 个循环,使用异或,置换,代换,移位操作四种基本运算。
1.工具类
- package com.wjn.okhttpmvpdemo.mode.utils;
-
- import java.nio.charset.Charset;
-
- import javax.crypto.Cipher;
- import javax.crypto.SecretKey;
- import javax.crypto.SecretKeyFactory;
- import javax.crypto.spec.DESKeySpec;
- import javax.crypto.spec.IvParameterSpec;
-
- public class DesUtil {
-
- /**
- * 加密 外部调用
- *
- * @param srcStr
- * @param charset
- * @param sKey
- * @return
- */
-
- public static String encrypt(String srcStr, Charset charset, String sKey) {
- byte[] src = srcStr.getBytes(charset);
- byte[] buf = encrypt(src, sKey);
- return parseByte2HexStr(buf);
- }
-
- /**
- * 解密 外部调用
- *
- * @param hexStr
- * @param sKey
- * @return
- */
-
- public static String decrypt(String hexStr, Charset charset, String sKey) throws Exception {
- byte[] src = parseHexStr2Byte(hexStr);
- byte[] buf = decrypt(src, sKey);
- return new String(buf, charset);
- }
-
- /**
- * 加密 内部调用
- *
- * @param data
- * @param sKey
- * @return
- */
-
- public static byte[] encrypt(byte[] data, String sKey) {
- try {
- byte[] key = sKey.getBytes();
- // 初始化向量
- IvParameterSpec iv = new IvParameterSpec(key);
- DESKeySpec desKey = new DESKeySpec(key);
- // 创建一个密匙工厂,然后用它把DESKeySpec转换成securekey
- SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
- SecretKey securekey = keyFactory.generateSecret(desKey);
- // Cipher对象实际完成加密操作
- Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
- // 用密匙初始化Cipher对象
- cipher.init(Cipher.ENCRYPT_MODE, securekey, iv);
- // 现在,获取数据并加密
- // 正式执行加密操作
- return cipher.doFinal(data);
- } catch (Throwable e) {
- e.printStackTrace();
- }
- return null;
- }
-
- /**
- * 解密 内部调用
- *
- * @param src
- * @param sKey
- * @return
- */
-
- public static byte[] decrypt(byte[] src, String sKey) throws Exception {
- byte[] key = sKey.getBytes();
- // 初始化向量
- IvParameterSpec iv = new IvParameterSpec(key);
- // 创建一个DESKeySpec对象
- DESKeySpec desKey = new DESKeySpec(key);
- // 创建一个密匙工厂
- SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
- // 将DESKeySpec对象转换成SecretKey对象
- SecretKey securekey = keyFactory.generateSecret(desKey);
- // Cipher对象实际完成解密操作
- Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
- // 用密匙初始化Cipher对象
- cipher.init(Cipher.DECRYPT_MODE, securekey, iv);
- // 真正开始解密操作
- return cipher.doFinal(src);
- }
-
- /**
- * 将二进制转换成16进制
- *
- * @param buf
- * @return
- */
-
- public static String parseByte2HexStr(byte buf[]) {
- StringBuffer sb = new StringBuffer();
- for (int i = 0; i < buf.length; i++) {
- String hex = Integer.toHexString(buf[i] & 0xFF);
- if (hex.length() == 1) {
- hex = '0' + hex;
- }
- sb.append(hex.toUpperCase());
- }
- return sb.toString();
- }
-
- /**
- * 将16进制转换为二进制
- *
- * @param hexStr
- * @return
- */
-
- public static byte[] parseHexStr2Byte(String hexStr) {
- if (hexStr.length() < 1) return null;
- byte[] result = new byte[hexStr.length() / 2];
- for (int i = 0; i < hexStr.length() / 2; i++) {
- int high = Integer.parseInt(hexStr.substring(i * 2, i * 2 + 1), 16);
- int low = Integer.parseInt(hexStr.substring(i * 2 + 1, i * 2 + 2), 16);
- result[i] = (byte) (high * 16 + low);
- }
- return result;
- }
-
- }
-
2.调用
- private void myDesMethod(){
- String SKEY = "1q2w3e4r";//必须8位
- Charset CHARSET = Charset.forName("GBK");
- //待加密内容
- String str = "今天是你的生日,我的中国236598";
- Log.d("TAG","原字符串:"+str);
- Log.d("TAG","********************************************");
- String encryptResult = DesUtil.encrypt(str, CHARSET, SKEY);
- Log.d("TAG","加密后:"+encryptResult);
- Log.d("TAG","********************************************");
- // 解密
- String decryResult = "";
- try {
- decryResult = DesUtil.decrypt(encryptResult, CHARSET, SKEY);
- } catch (Exception e1) {
- e1.printStackTrace();
- }
- Log.d("TAG","解密后:"+decryResult);
- }
3.结果
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。