IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> AES加密工具类 -> 正文阅读

[游戏开发]AES加密工具类

AES128(秘钥长度16)

import com.alibaba.fastjson.JSONObject;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;

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

/**
 * AES128 加解密工具类
 * @author gxy
 */
public class Aes128Utils {

    private static final Logger log = LoggerFactory.getLogger(Aes128Utils.class);

    /**
     * 默认加密、解密秘钥
     */
    public static final String DEFAULT_SECRET_KEY = "F028%$#1702ES128";
    /**
     * 算法/加密模式/填充方式
     */
    private static final String CIPHER_ALGORITHM = "AES/ECB/PKCS5Padding";
    /**
     * AES 加密、解密秘钥长度需为16
     */
    private static final int SECURITY_KEY_LEN = 16;

    private static final String AES = "AES";

    /**
     * 加密Encoder
     */
    private static final BASE64Encoder base64Encoder = new BASE64Encoder();
    /**
     * 解密Encoder
     */
    private static final BASE64Decoder base64Decoder = new BASE64Decoder();

    /**
     * 加密
     *
     * @param content 需要加密的字符串
     * @param key 密钥
     * @return
     * @throws Exception
     */
    public static String encode(String content, String key) {
        if (StringUtils.isAllBlank(content, key) || key.length() != SECURITY_KEY_LEN) {
            log.error("待加密字符串[{}]串或秘钥[{}]错误!", content, key);
            return null;
        }
        try {
            SecretKeySpec skeySpec = new SecretKeySpec(key.getBytes(StandardCharsets.UTF_8), AES);
            // "算法/模式/补码方式"
            Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM);
            cipher.init(Cipher.ENCRYPT_MODE, skeySpec);
            byte[] encrypted = cipher.doFinal(content.getBytes(StandardCharsets.UTF_8.displayName()));
            // 此处使用BASE64做转码功能,同时能起到2次加密的作用。
            return base64Encoder.encode(encrypted);
        } catch (Exception e) {
            log.error("待加密字符串[{}]进行AES128加密失败!", content, e);
            return null;
        }
    }

    /**
     * 解密
     *
     * @param content 需要解密的字符串
     * @param key 密钥
     * @return
     */
    public static String decode(String content, String key) {
        if (StringUtils.isAllBlank(content, key) || key.length() != SECURITY_KEY_LEN) {
            log.error("待解密字符串[{}]或秘钥[{}]错误!", content, key);
            return null;
        }
        try {
            SecretKeySpec skeySpec = new SecretKeySpec(key.getBytes(StandardCharsets.UTF_8), AES);
            Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM);
            cipher.init(Cipher.DECRYPT_MODE, skeySpec);
            // 先用base64解密
            byte[] encrypted = base64Decoder.decodeBuffer(content);
            return new String(cipher.doFinal(encrypted), StandardCharsets.UTF_8.displayName());
        } catch (Exception e) {
            log.error("待解密字符串[{}]进行AES128解密失败!", content, e);
            return null;
        }
    }

    /**
     * 加密
     *
     * @param content 需要加密的字符串
     * @return
     * @throws Exception
     */
    public static String encode(String content) {
        return encode(content, DEFAULT_SECRET_KEY);
    }

    /**
     * 解密
     *
     * @param content 需要解密的字符串
     * @return
     */
    public static String decode(String content) {
        return decode(content, DEFAULT_SECRET_KEY);
    }

    public static void main(String[] args) {
        JSONObject js = new JSONObject();
        js.put("name", "巨魔战将");
        js.put("skill", "狂热");
        String content = js.toJSONString();
        log.info("待加密:{}", content);
        String encodeStr = encode(content);
        log.info("加密后:{}", encodeStr);
        log.info("解密后:{}", decode(encodeStr));

    }

运行结果

10:41:52.603 [main] INFO com.gxy.learn.utils.aes.Aes128Utils - 待加密:{"skill":"狂热","name":"巨魔战将"}
10:41:52.928 [main] INFO com.gxy.learn.utils.aes.Aes128Utils - 加密后:48AnD/U65nqdvVh68LI440TwfLjndVn3FEVgEiU/BlbooPBCUjMHHXuuZdrYJ6P0
10:41:52.928 [main] INFO com.gxy.learn.utils.aes.Aes128Utils - 解密后:{"skill":"狂热","name":"巨魔战将"}

Aes256工具类(秘钥长度32)

import com.alibaba.fastjson.JSONObject;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;

import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.nio.charset.StandardCharsets;

/**
 * AES256 加解密工具类
 *
 * @author gxy
 */
public class Aes256Utils {

    private static final Logger log = LoggerFactory.getLogger(Aes256Utils.class);
    /**
     * 密钥, 256位32个字节
     */
    public static final String DEFAULT_SECRET_KEY = "BKNG978QLLB80K8CHB7BRKG5203JDEVF";
    /**
     * AES256 加密、解密秘钥长度需为32
     */
    private static final int SECURITY_KEY_LEN = 32;
    private static final String AES = "AES";

    /**
     * 初始向量IV, 初始向量IV的长度规定为128位16个字节, 初始向量的来源为随机生成.
     */
    private static final byte[] KEY_VI = "F028%$#1702ES128".getBytes(StandardCharsets.UTF_8);

    /**
     * 加密解密算法/加密模式/填充方式
     */
    private static final String CIPHER_ALGORITHM = "AES/CBC/PKCS5Padding";
    /**
     * 加密Encoder
     */
    private static final BASE64Encoder base64Encoder = new BASE64Encoder();
    /**
     * 解密Encoder
     */
    private static final BASE64Decoder base64Decoder = new BASE64Decoder();

    static {
        /**
         * 在 Java 8 之前,必须在 JDK 中下载并安装 JCE 才能使用它。在 OpenJDK 11 中,默认安装了无限制的加密策略。如果您想(或必须)从无限制切换到有限加密策略,只需一行代码即可完成。
         * Security.setProperty("crypto.policy", "limited");
         * 从 Java 1.8.0_151 和 1.8.0_152 开始,有一种新的更简单的方法可以为 JVM 启用无限强度管辖策略。例如,如果不启用此功能,您将无法使用 AES-256 加密。
         * 要使用它,我们需要先下载 JRE。我喜欢将 server-jre 用于服务器。提取 server-jre 时,在 jre/lib/security 文件夹中查找文件 java.security。例如,对于 Java 1.8.0_152,文件结构如下所示:
         * /jdk1.8.0_152 |- /jre |- /lib |- /security |- java.security
         * 现在,使用文本编辑器打开 java.security 并查找定义 java 安全属性 crypto.policy 的行。它可以有两个值是有限的或无限的——默认是有限的。
         * 默认情况下,您应该找到一个注释掉的行:
         * #crypto.policy=unlimited
         * 您可以通过取消注释该行来启用无限制,删除 #:
         * crypto.policy=unlimited
         * 现在重新启动指向 JVM 的 Java 应用程序,您应该已准备就绪。
         */
        java.security.Security.setProperty("crypto.policy", "unlimited");
    }

    /**
     * 加密
     *
     * @param content 需要加密的字符串
     * @param key     密钥
     * @return
     * @throws Exception
     */
    public static String encode(String content, String key) {
        if (StringUtils.isAllBlank(content, key) || key.length() != SECURITY_KEY_LEN) {
            log.error("待加密字符串[{}]串或秘钥[{}]错误!", content, key);
            return null;
        }
        try {
            SecretKey secretKey = new SecretKeySpec(key.getBytes(StandardCharsets.UTF_8), AES);
            Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM);
            cipher.init(Cipher.ENCRYPT_MODE, secretKey, new IvParameterSpec(KEY_VI));
            // 根据密码器的初始化方式加密
            byte[] byteAES = cipher.doFinal(content.getBytes(StandardCharsets.UTF_8));
            // 将加密后的数据转换为字符串
            return base64Encoder.encode(byteAES);
        } catch (Exception e) {
            log.error("待加密字符串[{}]进行AES256加密失败!", content, e);
        }
        return null;
    }

    /**
     * 解密
     *
     * @param content 需要解密的字符串
     * @param key     密钥
     * @return
     */
    public static String decode(String content, String key) {
        if (StringUtils.isAllBlank(content, key) || key.length() != SECURITY_KEY_LEN) {
            log.error("待解密字符串[{}]或秘钥[{}]错误!", content, key);
            return null;
        }
        try {
            SecretKey secretKey = new SecretKeySpec(key.getBytes(StandardCharsets.UTF_8), AES);
            Cipher cipher = Cipher.getInstance(CIPHER_ALGORITHM);
            cipher.init(Cipher.DECRYPT_MODE, secretKey, new IvParameterSpec(KEY_VI));
            // 将加密并编码后的内容解码成字节数组 解密

            byte[] byteDecode = cipher.doFinal(base64Decoder.decodeBuffer(content));
            return new String(byteDecode, StandardCharsets.UTF_8);
        } catch (Exception e) {
            log.error("待解密字符串[{}]进行AES256解密失败!", content, e);
        }
        return null;
    }

    /**
     * 加密
     *
     * @param str 需要加密的字符串
     * @return
     * @throws Exception
     */
    public static String encode(String str) {
        return encode(str, DEFAULT_SECRET_KEY);
    }

    /**
     * 解密
     *
     * @param str 需要解密的字符串
     * @return
     */
    public static String decode(String str) {
        return decode(str, DEFAULT_SECRET_KEY);
    }

    public static void main(String[] args) {
        JSONObject js = new JSONObject();
        js.put("name", "巨魔战将");
        js.put("skill", "狂热");
        String content = js.toJSONString();
        log.info("待加密:{}", content);
        String encodeStr = encode(content);
        log.info("加密后:{}", encodeStr);
        log.info("解密后:{}", decode(encodeStr));
    }
}

运行结果

10:43:04.542 [main] INFO com.gxy.learn.utils.aes.Aes256Utils - 待加密:{"skill":"狂热","name":"巨魔战将"}
10:43:04.870 [main] INFO com.gxy.learn.utils.aes.Aes256Utils - 加密后:I7004igPz0hbrDFrqxVejpCTd1K8v2wJTuVa9mGk4Wp+5mc8PGXuCdlfwcUt8aTd
10:43:04.870 [main] INFO com.gxy.learn.utils.aes.Aes256Utils - 解密后:{"skill":"狂热","name":"巨魔战将"}
  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-04-30 09:00:48  更:2022-04-30 09:02:04 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 13:44:14-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码