Java DES加密


import java.security.Key;
import java.security.Security;

import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;

import com.sun.crypto.provider.SunJCE;

public class DESPlus
{
  private static String strDefaultKey = "national";

  private Cipher encryptCipher = null;

  private Cipher decryptCipher = null;

  public static String byteArr2HexStr(byte[] arrB)
    throws Exception
  {
    int iLen = arrB.length;

    StringBuffer sb = new StringBuffer(iLen * 2);
    for (int i = 0; i < iLen; i++) {
      int intTmp = arrB[i];

      while (intTmp < 0) {
        intTmp += 256;
      }

      if (intTmp < 16) {
        sb.append("0");
      }
      sb.append(Integer.toString(intTmp, 16));
    }
    return sb.toString();
  }

  public static byte[] hexStr2ByteArr(String strIn)
    throws Exception
  {
    byte[] arrB = strIn.getBytes();
    int iLen = arrB.length;

    byte[] arrOut = new byte[iLen / 2];
    for (int i = 0; i < iLen; i += 2) {
      String strTmp = new String(arrB, i, 2);
      arrOut[(i / 2)] = ((byte)Integer.parseInt(strTmp, 16));
    }
    return arrOut;
  }

  public DESPlus()
  {
    this(strDefaultKey);
  }

  public DESPlus(String strKey)
  {
    try
    {
      Security.addProvider(new SunJCE());
      Key key = getKey(strKey.getBytes());

      this.encryptCipher = Cipher.getInstance("DES");
      this.encryptCipher.init(1, key);

      this.decryptCipher = Cipher.getInstance("DES");
      this.decryptCipher.init(2, key);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

  public byte[] encrypt(byte[] arrB)
    throws Exception
  {
    return this.encryptCipher.doFinal(arrB);
  }

  public String encrypt(String strIn)
  {
    String strOut = null;
    try {
      strOut = byteArr2HexStr(encrypt(strIn.getBytes()));
    } catch (Exception e) {
      e.printStackTrace();
    }
    return strOut;
  }

  public byte[] decrypt(byte[] arrB)
    throws Exception
  {
    return this.decryptCipher.doFinal(arrB);
  }

  public String decrypt(String strIn)
    throws Exception
  {
    return new String(decrypt(hexStr2ByteArr(strIn)));
  }

  private Key getKey(byte[] arrBTmp)
    throws Exception
  {
    byte[] arrB = new byte[8];

    for (int i = 0; (i < arrBTmp.length) && (i < arrB.length); i++) {
      arrB[i] = arrBTmp[i];
    }

    Key key = new SecretKeySpec(arrB, "DES");

    return key;
  }

  public static void main(String[] args)
  {
    try
    {
      String test = "111111";
      DESPlus des = new DESPlus();

      System.out.println("加密前的字符:" + test);
      System.out.println("加密后的字符:" + des.encrypt(test));
      System.out.println("解密后的字符:" + des.decrypt(des.encrypt(test)));
    }
    catch (Exception e) {
      e.printStackTrace();
    }
  }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值