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

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

import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
import java.nio.charset.StandardCharsets;
import java.util.Base64;

/**
 * AES128加密算法
 *
 * @author hcf
 * @date 2021/9/2 9:37
 */
@Slf4j
public class AES128Utils {

    private static final String ALGORITHM = "AES";

    private static final String ALGORITHM_NAME = "AES/ECB/PKCS5Padding";

    /**
     * 加密
     *
     * @param hexKey  密钥
     * @param content 明文
     * @return 加密内容
     */
    public static String encrypt(String hexKey, String content) {
        String encryptContent = StringUtils.EMPTY;
        SecretKeySpec keySpec = new SecretKeySpec(hexKey.getBytes(StandardCharsets.UTF_8), ALGORITHM);
        try {
            Cipher cipher = Cipher.getInstance(ALGORITHM_NAME);
            cipher.init(Cipher.ENCRYPT_MODE, keySpec);
            byte[] encrypted = cipher.doFinal(content.getBytes(StandardCharsets.UTF_8));
            encryptContent = Base64.getEncoder().encodeToString(encrypted);
        } catch (Exception e) {
            log.error("AES128Utils.encrypt error {}", e.getMessage(), e);
        }
        return encryptContent;
    }

    /**
     * 解密
     *
     * @param hexKey         明文密钥
     * @param encryptContent 加密内容
     * @return 明文
     */
    public static String decrypt(String hexKey, String encryptContent) {
        String content = StringUtils.EMPTY;
        SecretKeySpec keySpec = new SecretKeySpec(hexKey.getBytes(StandardCharsets.UTF_8), ALGORITHM);

        try {
            Cipher cipher = Cipher.getInstance(ALGORITHM_NAME);
            cipher.init(Cipher.DECRYPT_MODE, keySpec);
            byte[] decryptData = cipher.doFinal(Base64.getDecoder().decode(encryptContent));
            content = new String(decryptData, StandardCharsets.UTF_8);
        } catch (Exception e) {
            log.error("AES128Utils.encrypt decrypt {}", 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版本

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值