Java DESede 加解密("DESede/ECB/PKCS5Padding")

时间:2018-02-01 15:42:12   收藏:0   阅读:2020

 

private static final Cipher DES_CIPHER;


static {
    try {
        DES_CIPHER = Cipher.getInstance("DESede/ECB/PKCS5Padding");
    } catch (NoSuchAlgorithmException | NoSuchPaddingException e) {
        throw Throwables.propagate(e);
    }
}

public static String encryptDES(String encryptString, String encryptKey) {
    try {
        DES_CIPHER.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(encryptKey.getBytes(IcbcBindConstant.ENCODING_GBK), "DESede"));
        byte[] encryptedData = DES_CIPHER.doFinal(encryptString.getBytes(IcbcBindConstant.ENCODING_GBK));
        String hexData = Hex.encodeHexString(encryptedData).toUpperCase();
        return StringUtils.leftPad(String.valueOf(hexData.length()), 6, 0) + hexData;
    } catch (Throwable e) {
        throw Throwables.propagate(e);
    }
}

public static String decryptDES(String decryptString, String decryptKey) {
    try {
        DES_CIPHER.init(Cipher.DECRYPT_MODE, new SecretKeySpec(decryptKey.getBytes(IcbcBindConstant.ENCODING_GBK), "DESede"));
        byte[] decryptedData = DES_CIPHER.doFinal(Hex.decodeHex(decryptString.substring(6).toCharArray()));
        return new String(decryptedData, IcbcBindConstant.ENCODING_GBK);
    } catch (Throwable e) {
        throw Throwables.propagate(e);
    }
}

 

原文:https://www.cnblogs.com/frankyou/p/8398729.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!