Java实现的3des加密解密工具类示例

 更新时间:2017年10月25日 09:23:12   作者:CharlinGod  
这篇文章主要介绍了Java实现的3des加密解密工具类,结合完整实例形式分析了3des加密解密的具体步骤与相关操作技巧,需要的朋友可以参考下

本文实例讲述了Java实现的3des加密解密工具类。分享给大家供大家参考,具体如下:

package com.gcloud.common;
import org.apache.poi.poifs.property.Child;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import javax.crypto.*;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import java.security.*;
import java.security.spec.AlgorithmParameterSpec;
/**
 * 三重数据加密算法工具类
 * Created by charlin on 2017/9/11.
 */
public class V3DESUtil {
  //密钥存放位置
  public static String FILENAME = "d:/3des.key";
  // 1为加密,0为解密
  private int isEncrypt = -1;
  // 加密/解密密钥,长度为16byte或者24byte。
  private String keyStr;
  // 要加密/解密信息(解密时需为十六进制显示的字符串)
  private String message;
  public V3DESUtil() {
  }
  public V3DESUtil(int isEncrypt, String keyStr, String message) {
    this.isEncrypt = isEncrypt;
    this.keyStr = keyStr;
    this.message = message;
  }
  //numStr = 12345678
  public String V3DESChiper(String numStr) {
    String result = null;
    try {
      Security.addProvider(new BouncyCastleProvider());
      URL url = getClass().getResource(FILENAME);
      File myFile = new File(FILENAME);
      if (!myFile.exists()) {
        return "Can't Find " + FILENAME;
      }
      try {
        BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
        while ((keyStr = in.readLine()) == null) {
          return "读取密钥失败!";
        }
        in.close();
      } catch (IOException e) {
        e.printStackTrace();
      }
      SecretKey key = new SecretKeySpec(keyStr.getBytes(), "DESede");
      result = null;
      byte[] textByte = null;
      byte[] messageByte = null;
      Cipher cipher = Cipher.getInstance("DESede/CBC/PKCS5Padding", "BC");
      AlgorithmParameterSpec spec = new IvParameterSpec(numStr.getBytes());
      if (isEncrypt == 1) {
        messageByte = message.getBytes();
        cipher.init(Cipher.ENCRYPT_MODE, key, spec);
      } else if (isEncrypt == 0) {
        messageByte = decodeHex(message);
        cipher.init(Cipher.DECRYPT_MODE, key, spec);
      } else {
        return "加解密设置错误,请确认输入:1为加密;0为解密";
      }
      textByte = cipher.doFinal(messageByte);
      if (isEncrypt == 1) {
        result = encodeHex(textByte);
      } else if (isEncrypt == 0) {
        result = new String(textByte);
      }
    } catch (Exception e) {
      e.printStackTrace();
    }
    return result;
  }
  public static final String encodeHex(byte bytes[]) {
    StringBuffer buf = new StringBuffer(bytes.length * 2);
    for (int i = 0; i < bytes.length; i++) {
      if ((bytes[i] & 0xff) < 16)
        buf.append("0");
      buf.append(Long.toString(bytes[i] & 0xff, 16));
    }
    return buf.toString();
  }
  public static final byte[] decodeHex(String hex) {
    char chars[] = hex.toCharArray();
    byte bytes[] = new byte[chars.length / 2];
    int byteCount = 0;
    for (int i = 0; i < chars.length; i += 2) {
      int newByte = 0;
      newByte |= hexCharToByte(chars[i]);
      newByte <<= 4;
      newByte |= hexCharToByte(chars[i + 1]);
      bytes[byteCount] = (byte) newByte;
      byteCount++;
    }
    return bytes;
  }
  private static final byte hexCharToByte(char ch) {
    switch (ch) {
      case 48: // '0'
        return 0;
      case 49: // '1'
        return 1;
      case 50: // '2'
        return 2;
      case 51: // '3'
        return 3;
      case 52: // '4'
        return 4;
      case 53: // '5'
        return 5;
      case 54: // '6'
        return 6;
      case 55: // '7'
        return 7;
      case 56: // '8'
        return 8;
      case 57: // '9'
        return 9;
      case 97: // 'a'
        return 10;
      case 98: // 'b'
        return 11;
      case 99: // 'c'
        return 12;
      case 100: // 'd'
        return 13;
      case 101: // 'e'
        return 14;
      case 102: // 'f'
        return 15;
      case 58: // ':'
      case 59: // ';'
      case 60: // '<'
      case 61: // '='
      case 62: // '>'
      case 63: // '?'
      case 64: // '@'
      case 65: // 'A'
      case 66: // 'B'
      case 67: // 'C'
      case 68: // 'D'
      case 69: // 'E'
      case 70: // 'F'
      case 71: // 'G'
      case 72: // 'H'
      case 73: // 'I'
      case 74: // 'J'
      case 75: // 'K'
      case 76: // 'L'
      case 77: // 'M'
      case 78: // 'N'
      case 79: // 'O'
      case 80: // 'P'
      case 81: // 'Q'
      case 82: // 'R'
      case 83: // 'S'
      case 84: // 'T'
      case 85: // 'U'
      case 86: // 'V'
      case 87: // 'W'
      case 88: // 'X'
      case 89: // 'Y'
      case 90: // 'Z'
      case 91: // '['
      case 92: // '\\'
      case 93: // ']'
      case 94: // '^'
      case 95: // '_'
      case 96: // '`'
      default:
        return 0;
    }
  }
  public static String getFILENAME() {
    return FILENAME;
  }
  public int getIsEncrypt() {
    return isEncrypt;
  }
  public void setIsEncrypt(int isEncrypt) {
    this.isEncrypt = isEncrypt;
  }
  public String getKeyStr() {
    return keyStr;
  }
  public void setKeyStr(String keyStr) {
    this.keyStr = keyStr;
  }
  public String getMessage() {
    return message;
  }
  public void setMessage(String message) {
    this.message = message;
  }
  public static void main(String[] args) {
    String key = "yycg12345678901234567890";
    String oldstring = "test" + "#" + "test" + "#" + System.currentTimeMillis();
    V3DESUtil tempDesEn = new V3DESUtil(1, oldstring, key);
    String strTemp = tempDesEn.V3DESChiper("12345678");
    System.out.println("strTemp=== " + strTemp);
    V3DESUtil tempDe = new V3DESUtil(0, strTemp, key);
    String strTempDe = tempDe.V3DESChiper("12345678");
    System.out.println("strTempDe===" + strTempDe);
  }
}

PS:关于加密解密感兴趣的朋友还可以参考本站在线工具:

文字在线加密解密工具(包含AES、DES、RC4等):
http://tools.jb51.net/password/txt_encode

MD5在线加密工具:
http://tools.jb51.net/password/CreateMD5Password

在线散列/哈希算法加密工具:
http://tools.jb51.net/password/hash_encrypt

在线MD5/hash/SHA-1/SHA-2/SHA-256/SHA-512/SHA-3/RIPEMD-160加密工具:
http://tools.jb51.net/password/hash_md5_sha

在线sha1/sha224/sha256/sha384/sha512加密工具:
http://tools.jb51.net/password/sha_encode

更多关于java相关内容感兴趣的读者可查看本站专题:《Java数学运算技巧总结》、《Java数据结构与算法教程》、《Java字符与字符串操作技巧总结》、《Java操作DOM节点技巧总结》和《Java缓存操作技巧汇总

希望本文所述对大家java程序设计有所帮助。

相关文章

  • SpringBoot实现配置文件的替换

    SpringBoot实现配置文件的替换

    这篇文章主要介绍了SpringBoot实现配置文件的替换,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-12-12
  • Maven打包跳过测试的实现方法

    Maven打包跳过测试的实现方法

    使用Maven打包的时候,可能会因为单元测试打包失败,这时候就需要跳过单元测试。本文就介绍了Maven打包跳过测试的实现方法,感兴趣的可以了解一下
    2021-06-06
  • Spring的IOC容器实例化bean的方式总结

    Spring的IOC容器实例化bean的方式总结

    IOC容器实例化bean的三种方式:构造方法、静态工厂、实例工厂,本文将通过代码示例给大家详细讲解一下这三种方式,对大家的学习或工作有一定的帮助,需要的朋友可以参考下
    2024-01-01
  • Java 判断字符串中是否包含中文的实例详解

    Java 判断字符串中是否包含中文的实例详解

    这篇文章主要介绍了Java 判断字符串中是否包含中文的实例详解的相关资料,这里提供实例来说明该如何实现这样的功能,需要的朋友可以参考下
    2017-08-08
  • Springboot日期转换器实现代码及示例

    Springboot日期转换器实现代码及示例

    这篇文章主要介绍了Springboot日期转换器实现代码及示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2020-08-08
  • 浅析java移位符的具体使用

    浅析java移位符的具体使用

    这篇文章主要介绍了浅析java移位符的具体使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-07-07
  • Mybatis-plus实现join连表查询的示例代码

    Mybatis-plus实现join连表查询的示例代码

    mybatis-plus在连表查询上是不行的,如果需要连表查询,就得乖乖的去写xml文件了,本文介绍了mybatis-plus-join框架,它支持连表查询,感兴趣的可以了解一下
    2023-08-08
  • JavaWeb三大组件之Filter过滤器详解

    JavaWeb三大组件之Filter过滤器详解

    这篇文章主要介绍了JavaWeb三大组件之Filter过滤器详解,过滤器Filter是Java Web应用中的一种组件,它在请求到达Servlet或JSP之前或者响应送回客户端之前,对请求和响应进行预处理和后处理操作,需要的朋友可以参考下
    2023-10-10
  • Java由浅入深带你精通继承super

    Java由浅入深带你精通继承super

    继承就是子类继承父类的特征和行为,使得子类对象(实例)具有父类的实例域和方法,或子类从父类继承方法,使得子类具有父类相同的行为
    2022-03-03
  • Java使用kafka发送和生产消息的示例

    Java使用kafka发送和生产消息的示例

    本篇文章主要介绍了Java使用kafka发送和生产消息的示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-04-04

最新评论