【烦人的加密算法】3DES 加密的使用--Java版本

import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;

import javax.crypto.Cipher;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESedeKeySpec;
import javax.crypto.spec.IvParameterSpec;
import java.nio.charset.StandardCharsets;
import java.security.Key;
import java.util.Base64;

/**
 * 3DES加密
 *
 * @author hcf
 * @date 2021/9/1 20:56
 */
@Slf4j
public class DES3Utils {

    /**
     * 向量
     */
    private final static String IV = "01234567";

    private static final String ALGORITHM = "DESede";

    private static final String ALGORITHM_NAME = "DESede/CBC/PKCS5Padding";

    /**
     * 加密
     *
     * @param hexKey  密钥
     * @param content 内容
     * @return 密文
     */
    public static String encrypt(String hexKey, String content) {
        String encryptContent = StringUtils.EMPTY;
        try {
            DESedeKeySpec spec = new DESedeKeySpec(hexKey.getBytes());
            SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(ALGORITHM);
            Key key = keyFactory.generateSecret(spec);

            Cipher cipher = Cipher.getInstance(ALGORITHM_NAME);
            IvParameterSpec ips = new IvParameterSpec(IV.getBytes());
            cipher.init(Cipher.ENCRYPT_MODE, key, ips);
            byte[] encryptData = cipher.doFinal(content.getBytes(StandardCharsets.UTF_8));
            encryptContent = Base64.getEncoder().encodeToString(encryptData);
        } catch (Exception e) {
            log.error(" DES3Utils.encrypt error {}", e.getMessage(), e);
        }
        return encryptContent;
    }

    /**
     * 解密
     *
     * @param hexKey         明文密钥
     * @param encryptContent 加密内容
     * @return 明文
     */
    public static String decrypt(String hexKey, String encryptContent) {
        String content = StringUtils.EMPTY;
        try {
            DESedeKeySpec spec = new DESedeKeySpec(hexKey.getBytes());
            SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(ALGORITHM);
            Key key = keyFactory.generateSecret(spec);

            Cipher cipher = Cipher.getInstance(ALGORITHM_NAME);
            IvParameterSpec ips = new IvParameterSpec(IV.getBytes());
            cipher.init(Cipher.DECRYPT_MODE, key, ips);
            byte[] decryptData = cipher.doFinal(Base64.getDecoder().decode(encryptContent));
            content = new String(decryptData, StandardCharsets.UTF_8);
        } catch (Exception e) {
            log.error(" DES3Utils.decrypt error {}", e.getMessage(), e);
        }
        return content;
    }

    public static void main(String[] args) {
        String hexCipher = CipherUtils.randomHexCipher();
        String encrypt = encrypt(hexCipher, "content");
        System.out.println(encrypt);
        System.out.println(decrypt(hexCipher, encrypt));
    }
}

CipherUtils 参照

【烦人的加密算法】国密 SM4 的使用–Java版本

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值