AES加密

AES 是一种可逆加密算法,对用户的敏感信息加密处理。

本文暂不深入AES原理,仅关注JAVA代码实现AES加解密。

JAVA代码实现

这是一个在线AES加密网站。从页面上我们可以看到如下几点:

AES加密模式:ECB/CBC/CTR/OFB/CFB

填充:pkcs5padding/pkcs7padding/zeropadding/iso10126/ansix923

数据块:128位/192位/256位

密码:【设置加解密的密码,JAVA中有效密码为16位/24位/32位,

其中24位/32位需要JCE(Java 密码扩展无限制权限策略文件,

每个JDK版本对应一个JCE,百度即可找到)】

偏移量:【iv偏移量,ECB不用设置】

输出:base64/hex

字符集:gb2312/gbk/gb18030/utf8

确保以上元素相互匹配,即可保证AES加解密无误。

JAVA代码实现

注意:建议加密密码为16位,避免密码位数不足补0,导致密码不一致,加解密错误。

IOS可设置任意长度的加密密码,JAVA只支持16位/24位/32位,不知能否实现任意长度,望大佬告之。

package cn.roylion.common.util;

import sun.misc.BASE64Decoder;

import sun.misc.BASE64Encoder;

import javax.crypto.BadPaddingException;

import javax.crypto.Cipher;

import javax.crypto.IllegalBlockSizeException;

import javax.crypto.NoSuchPaddingException;

import javax.crypto.spec.SecretKeySpec;

import java.io.IOException;

import java.io.UnsupportedEncodingException;

import java.security.InvalidKeyException;

import java.security.NoSuchAlgorithmException;

/**

* @Author: Roylion

* @Description: AES算法封装

* @Date: Created in 9:46 2018/8/9

*/

public class EncryptUtil{

/**

* 加密算法

*/

private static final String ENCRY_ALGORITHM = "AES";

/**

* 加密算法/加密模式/填充类型

* 本例采用AES加密,ECB加密模式,PKCS5Padding填充

*/

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

/**

* 设置iv偏移量

* 本例采用ECB加密模式,不需要设置iv偏移量

*/

private static final String IV_ = null;

/**

* 设置加密字符集

* 本例采用 UTF-8 字符集

*/

private static final String CHARACTER = "UTF-8";

/**

* 设置加密密码处理长度。

* 不足此长度补0;

*/

private static final int PWD_SIZE = 16;

/**

* 密码处理方法

* 如果加解密出问题,

* 请先查看本方法,排除密码长度不足填充0字节,导致密码不一致

* @param password 待处理的密码

* @return

* @throws UnsupportedEncodingException

*/

private static byte[] pwdHandler(String password) throws UnsupportedEncodingException {

byte[] data = null;

if (password != null) {

byte[] bytes = password.getBytes(CHARACTER);

if (password.length() < PWD_SIZE) {

System.arraycopy(bytes, 0, data = new byte[PWD_SIZE], 0, bytes.length);

} else {

data = bytes;

}

}

return data;

}

//======================>原始加密<======================

/**

* 原始加密

* @param clearTextBytes 明文字节数组,待加密的字节数组

* @param pwdBytes 加密密码字节数组

* @return 返回加密后的密文字节数组,加密错误返回null

*/

public static byte[] encrypt(byte[] clearTextBytes, byte[] pwdBytes) {

try {

// 1 获取加密密钥

SecretKeySpec keySpec = new SecretKeySpec(pwdBytes, ENCRY_ALGORITHM);

// 2 获取Cipher实例

Cipher cipher = Cipher.getInstance(CIPHER_MODE);

// 查看数据块位数 默认为16(byte) * 8 =128 bit

// System.out.println("数据块位数(byte):" + cipher.getBlockSize());

// 3 初始化Cipher实例。设置执行模式以及加密密钥

cipher.init(Cipher.ENCRYPT_MODE, keySpec);

// 4 执行

byte[] cipherTextBytes = cipher.doFinal(clearTextBytes);

// 5 返回密文字符集

return cipherTextBytes;

} catch (NoSuchPaddingException e) {

e.printStackTrace();

} catch (NoSuchAlgorithmException e) {

e.printStackTrace();

} catch (BadPaddingException e) {

e.printStackTrace();

} catch (IllegalBlockSizeException e) {

e.printStackTrace();

} catch (InvalidKeyException e) {

e.printStackTrace();

} catch (Exception e) {

e.printStackTrace();

}

return null;

}

/**

* 原始解密

* @param cipherTextBytes 密文字节数组,待解密的字节数组

* @param pwdBytes 解密密码字节数组

* @return 返回解密后的明文字节数组,解密错误返回null

*/

public static byte[] decrypt(byte[] cipherTextBytes, byte[] pwdBytes) {

try {

// 1 获取解密密钥

SecretKeySpec keySpec = new SecretKeySpec(pwdBytes, ENCRY_ALGORITHM);

// 2 获取Cipher实例

Cipher cipher = Cipher.getInstance(CIPHER_MODE);

// 查看数据块位数 默认为16(byte) * 8 =128 bit

// System.out.println("数据块位数(byte):" + cipher.getBlockSize());

// 3 初始化Cipher实例。设置执行模式以及加密密钥

cipher.init(Cipher.DECRYPT_MODE, keySpec);

// 4 执行

byte[] clearTextBytes = cipher.doFinal(cipherTextBytes);

// 5 返回明文字符集

return clearTextBytes;

} catch (NoSuchAlgorithmException e) {

e.printStackTrace();

} catch (InvalidKeyException e) {

e.printStackTrace();

} catch (NoSuchPaddingException e) {

e.printStackTrace();

} catch (BadPaddingException e) {

e.printStackTrace();

} catch (IllegalBlockSizeException e) {

e.printStackTrace();

} catch (Exception e) {

e.printStackTrace();

}

// 解密错误 返回null

return null;

}

//======================>BASE64<======================

/**

* BASE64加密

* @param clearText 明文,待加密的内容

* @param password 密码,加密的密码

* @return 返回密文,加密后得到的内容。加密错误返回null

*/

public static String encryptBase64(String clearText, String password) {

try {

// 1 获取加密密文字节数组

byte[] cipherTextBytes = encrypt(clearText.getBytes(CHARACTER), pwdHandler(password));

// 2 对密文字节数组进行BASE64 encoder 得到 BASE6输出的密文

BASE64Encoder base64Encoder = new BASE64Encoder();

String cipherText = base64Encoder.encode(cipherTextBytes);

// 3 返回BASE64输出的密文

return cipherText;

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

} catch (Exception e) {

e.printStackTrace();

}

// 加密错误 返回null

return null;

}

/**

* BASE64解密

* @param cipherText 密文,带解密的内容

* @param password 密码,解密的密码

* @return 返回明文,解密后得到的内容。解密错误返回null

*/

public static String decryptBase64(String cipherText, String password) {

try {

// 1 对 BASE64输出的密文进行BASE64 decodebuffer 得到密文字节数组

BASE64Decoder base64Decoder = new BASE64Decoder();

byte[] cipherTextBytes = base64Decoder.decodeBuffer(cipherText);

// 2 对密文字节数组进行解密 得到明文字节数组

byte[] clearTextBytes = decrypt(cipherTextBytes, pwdHandler(password));

// 3 根据 CHARACTER 转码,返回明文字符串

return new String(clearTextBytes, CHARACTER);

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

} catch (Exception e) {

e.printStackTrace();

}

// 解密错误返回null

return null;

}

//======================>HEX<======================

/**

* HEX加密

* @param clearText 明文,待加密的内容

* @param password 密码,加密的密码

* @return 返回密文,加密后得到的内容。加密错误返回null

*/

public static String encryptHex(String clearText, String password) {

try {

// 1 获取加密密文字节数组

byte[] cipherTextBytes = encrypt(clearText.getBytes(CHARACTER), pwdHandler(password));

// 2 对密文字节数组进行 转换为 HEX输出密文

String cipherText = byte2hex(cipherTextBytes);

// 3 返回 HEX输出密文

return cipherText;

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

} catch (Exception e) {

e.printStackTrace();

}

// 加密错误返回null

return null;

}

/**

* HEX解密

* @param cipherText 密文,带解密的内容

* @param password 密码,解密的密码

* @return 返回明文,解密后得到的内容。解密错误返回null

*/

public static String decryptHex(String cipherText, String password) {

try {

// 1 将HEX输出密文 转为密文字节数组

byte[] cipherTextBytes = hex2byte(cipherText);

// 2 将密文字节数组进行解密 得到明文字节数组

byte[] clearTextBytes = decrypt(cipherTextBytes, pwdHandler(password));

// 3 根据 CHARACTER 转码,返回明文字符串

return new String(clearTextBytes, CHARACTER);

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

} catch (Exception e) {

e.printStackTrace();

}

// 解密错误返回null

return null;

}

/*字节数组转成16进制字符串 */

public static String byte2hex(byte[] bytes) { // 一个字节的数,

StringBuffer sb = new StringBuffer(bytes.length * 2);

String tmp = "";

for (int n = 0; n < bytes.length; n++) {

// 整数转成十六进制表示

tmp = (java.lang.Integer.toHexString(bytes[n] & 0XFF));

if (tmp.length() == 1) {

sb.append("0");

}

sb.append(tmp);

}

return sb.toString().toUpperCase(); // 转成大写

}

/*将hex字符串转换成字节数组 */

private static byte[] hex2byte(String str) {

if (str == null || str.length() < 2) {

return new byte[0];

}

str = str.toLowerCase();

int l = str.length() / 2;

byte[] result = new byte[l];

for (int i = 0; i < l; ++i) {

String tmp = str.substring(2 * i, 2 * i + 2);

result[i] = (byte) (Integer.parseInt(tmp, 16) & 0xFF);

}

return result;

}

public static void main(String[] args) {

String test = encryptHex("test", "1234567800000000");

System.out.println(test);

System.out.println(decryptHex(test, "1234567800000000"));

}

}

java aes iv 24位_【JAVA】AES加密 简单实现 AES-128/ECB/PKCS5Padding相关推荐

  1. java aes iv 24位_当key和IV是Java字节数组时,用python进行AES解密

    我有以下两个值: AES key它是一个Java字节数组64,67,-65,88,-19,-118,-16,-53,-81,-98,44,-83,82,-90,124,112,-120,42,92,6 ...

  2. java中补码与位运算,Java:二进制(原码、反码、补码)与位运算

    一.二进制(原码.反码.补码) 二进制的最高位是符号位("0"代表正数,"1"代表负数): Java中没有无符号数: 计算机以整数的补码进行运算: 1.  原码 ...

  3. java 微信群发多图文_[Java教程]httpClient实现微信公众号消息群发

    [Java教程]httpClient实现微信公众号消息群发 0 2016-09-21 20:00:10 1.实现功能 向关注了微信公众号的微信用户群发消息.(可以是所有的用户,也可以是提供了微信ope ...

  4. node 16位 转24位_同时将24位和32位BMP图像顺时针旋转90度

    上一次我们将24位的皮卡丘旋转了90度,但是后来改需求了...要求把32位的.bmp文件也能够旋转90度.上次就懵逼的我继续懵逼,只好继续转向CSDN求助. 浏览了各种求助帖(还找到了数年前的信科大一 ...

  5. java类全路径简写_[JAVA] JAVA 类路径

    Java 类路径 类路径是所有包含类文件的路径的集合. 类路径中的目录和归档文件是搜寻类的起始点. 虚拟机搜寻类 搜寻jre/lib和jre/lib/ext目录中归档文件中所存放的系统类文件 搜寻再从 ...

  6. java对数字的处理_[java初探10]__关于数字处理类

    前言 在我们的日常开发过程中,我们会经常性的使用到数字类型的数据,同时,也会有众多的对数字处理的需求,针对这个方面的问题,在JAVA语言中.提供解决方法的类就是数字处理类 java中的数字处理类包括: ...

  7. java set第n位_数据结构与算法——常用数据结构及其Java实现

    本文采用Java语言来进行描述,帮大家好好梳理一下数据结构与算法,在工作和面试中用的上.亦即总结常见的的数据结构,以及在Java中相应的实现方法,务求理论与实践一步总结到位. 常用数据结构 数组 数组 ...

  8. java float超过7位_为何float有效位数为7位?

    C/C++编译器标准都遵照IEEE制定的浮点数表示法来进行float,double运算 无论是float还是double,在内存中的存储主要分成三部分,分别是: (1)符号位(Sign): 0代表正数 ...

  9. java不大于6位_末尾带4的完全平方数的数量并且打印输出_Java计算一个数加上100是完全平方数,加上168还是完全平方数...

    题目:一个整数,它加上100后是一个完全平方数,加上168又是一个完全平方数,请问该数是多少? 程序分析:在10万以内判断,先将该数加上100后再开方,再将该数加上268后再开方,如果开方后的结果满足 ...

最新文章

  1. dataframe构建
  2. 清华大学张悠慧:超越冯·诺依曼模型,实现软硬件去耦合的类脑计算(附视频)
  3. Python Tornado搭建高并发Restful API接口服务
  4. 面试:给我说一下Spring MVC拦截器的原理?
  5. NeuSoft(2)添加系统调用
  6. springcloudstream+rabbitmq+eureka进行消息发送和接收实例代码
  7. 处理字符串_4_计算某个字符出现的次数
  8. 【数据结构与算法】之深入解析“二叉树的序列化与反序列化”的求解思路与算法示例
  9. 关于 SAP Spartacus 的 Theme 颜色主题
  10. LeetCode(合集)两数之和总结 (1,167,1346)
  11. 行为设计模式 - 中介设计模式
  12. python中的urlencode和urldecode
  13. B00008 C++实现的大整数计算(一)
  14. Border属性的各种变化
  15. Windows下安装pip
  16. 计算机系统的位的描述性定义,计算机系统中,“位”的描述性定义是________。
  17. 蓝海创意云丨建筑设计:BIM技术在异形建筑中的应用(以梅溪湖为例)
  18. 互联网大佬们都在焦虑什么?
  19. Android虚拟机是以哪种方式实现的,底层逻辑又是怎样的?
  20. spp_solver

热门文章

  1. Oracle11g限制ip访问数据库,ORACLE 限制特定IP访问数据库
  2. Flink Mailbox模型
  3. Windows操作系统的版本
  4. eclipse 项目报错 但没有提示哪里出错
  5. oracle ba log market,京东爬虫、数据分析、报表 (2)
  6. Chrome浏览器,修改打开新标签页是Bing搜索默认页
  7. 最简单求1~999999的水仙花数
  8. lol老是闪退到桌面_lol闪退怎么办
  9. 100MHz分出1Hz的verilog代码
  10. 网易2021暑期实习 游戏开发 一面