des java工具_DesUtils工具类

public final classDesUtils {private static final String DES = "DES";private static final String KEY = "4YztMHI7PsT4rLZN";privateDesUtils() {}private static byte[] encrypt(byte[] src, byte[] key) throwsException {

SecureRandom sr= newSecureRandom();

DESKeySpec dks= newDESKeySpec(key);

SecretKeyFactory keyFactory=SecretKeyFactory.getInstance(DES);

SecretKey secretKey=keyFactory.generateSecret(dks);

Cipher cipher=Cipher.getInstance(DES);

cipher.init(Cipher.ENCRYPT_MODE, secretKey, sr);returncipher.doFinal(src);

}private static byte[] decrypt(byte[] src, byte[] key) throwsException {

SecureRandom sr= newSecureRandom();

DESKeySpec dks= newDESKeySpec(key);

SecretKeyFactory keyFactory=SecretKeyFactory.getInstance(DES);

SecretKey secretKey=keyFactory.generateSecret(dks);

Cipher cipher=Cipher.getInstance(DES);

cipher.init(Cipher.DECRYPT_MODE, secretKey, sr);returncipher.doFinal(src);

}private static String byte2hex(byte[] b) {

String hs= "";

String temp= "";for (int n = 0; n < b.length; n++) {

temp= (java.lang.Integer.toHexString(b[n] & 0XFF));if (temp.length() == 1)

hs= hs + "0" +temp;elsehs= hs +temp;

}returnhs.toUpperCase();

}private static byte[] hex2byte(byte[] b) {if ((b.length % 2) != 0)throw new IllegalArgumentException("length not even");byte[] b2 = new byte[b.length / 2];for (int n = 0; n < b.length; n += 2) {

String item= new String(b, n, 2);

b2[n/ 2] = (byte) Integer.parseInt(item, 16);

}returnb2;

}private staticString decode(String src, String key) {

String decryptStr= "";try{byte[] decrypt =decrypt(hex2byte(src.getBytes()), key.getBytes());

decryptStr= newString(decrypt);

}catch(Exception e) {

e.printStackTrace();

}returndecryptStr;

}private staticString encode(String src, String key){byte[] bytes = null;

String encryptStr= "";try{

bytes=encrypt(src.getBytes(), key.getBytes());

}catch(Exception ex) {

ex.printStackTrace();

}if (bytes != null)

encryptStr=byte2hex(bytes);returnencryptStr;

}/*** 解密*/

public staticString decode(String src) {returndecode(src, KEY);

}/*** 加密*/

public staticString encode(String src) {returnencode(src, KEY);

}

}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值