Java AES对称加密解密
程序员文章站
2024-03-14 17:14:34
...
这里记录了网上找的AES对称加密解密的Java代码实现,本地windows系统下测试没有问题,更到服务器linux系统下发现加密没问题,解密报错javax.crypto.BadPaddingException: Given final block not properly padded,同时记录了这个报错的解决方案,原因定位在SecureRandom 实现完全随操作系统本身的內部状态,除非調用方在調用 getInstance 方法之後又調用了 setSeed 方法;该实现在 windows 上每次生成的 key 都相同,但是在 solaris 或部分 linux 系统上则不同(实际上,linux测试下,如果不加2、3行代码,同一个字符串加密后的数据都不一样)。核心处理代码为:
KeyGenerator _generator = KeyGenerator.getInstance("AES");
SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG"); // 添加处理
secureRandom.setSeed(strKey.getBytes()); // 添加处理
_generator.init(128, secureRandom);
完整代码:
import java.security.SecureRandom;
import java.util.Scanner;
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
/*
* AES对称加密和解密
*/
public class AesUtils {
/*
* 加密
* 1.构造**生成器
* 2.根据ecnodeRules规则初始化**生成器
* 3.产生**
* 4.创建和初始化密码器
* 5.内容加密
* 6.返回字符串
*/
public static String AESEncode(String encodeRules,String content){
try {
//1.构造**生成器,指定为AES算法,不区分大小写
// KeyGenerator ******=KeyGenerator.getInstance("AES");
// //2.根据ecnodeRules规则初始化**生成器
// //生成一个128位的随机源,根据传入的字节数组
// ******.init(128, new SecureRandom(encodeRules.getBytes()));
//3.产生原始对称**
SecretKey original_key = getKey(encodeRules);
//4.获得原始对称**的字节数组
byte [] raw=original_key.getEncoded();
//5.根据字节数组生成AES**
SecretKey key=new SecretKeySpec(raw, "AES");
//6.根据指定算法AES自成密码器
Cipher cipher=Cipher.getInstance("AES");
//7.初始化密码器,第一个参数为加密(Encrypt_mode)或者解密解密(Decrypt_mode)操作,第二个参数为使用的KEY
cipher.init(Cipher.ENCRYPT_MODE, key);
//8.获取加密内容的字节数组(这里要设置为utf-8)不然内容中如果有中文和英文混合中文就会解密为乱码
byte [] byte_encode=content.getBytes("utf-8");
//9.根据密码器的初始化方式--加密:将数据加密
byte [] byte_AES=cipher.doFinal(byte_encode);
//10.将加密后的数据转换为字符串
//这里用Base64Encoder中会找不到包
//解决办法:
//在项目的Build path中先移除JRE System Library,再添加库JRE System Library,重新编译后就一切正常了。
String AES_encode=new String(new BASE64Encoder().encode(byte_AES));
//11.将字符串返回
return bytesToHexString(AES_encode.getBytes());
} catch (Exception e) {
return null;
}
}
/*
* 解密
* 解密过程:
* 1.同加密1-4步
* 2.将加密后的字符串反纺成byte[]数组
* 3.将加密内容解密
*/
public static String AESDncode(String encodeRules,String content) throws Exception{
// try {
//1.构造**生成器,指定为AES算法,不区分大小写
// KeyGenerator ******=KeyGenerator.getInstance("AES");
// //2.根据ecnodeRules规则初始化**生成器
// SecureRandom random = SecureRandom.getInstance("SHA1PRNG");
// random.setSeed(encodeRules.getBytes("utf-8"));
// //生成一个128位的随机源,根据传入的字节数组
// ******.init(128, random);
//3.产生原始对称**
SecretKey original_key = getKey(encodeRules);
//4.获得原始对称**的字节数组
byte [] raw=original_key.getEncoded();
//5.根据字节数组生成AES**
SecretKey key=new SecretKeySpec(raw, "AES");
//6.根据指定算法AES自成密码器
Cipher cipher=Cipher.getInstance("AES");
//7.初始化密码器,第一个参数为加密(Encrypt_mode)或者解密(Decrypt_mode)操作,第二个参数为使用的KEY
cipher.init(Cipher.DECRYPT_MODE, key);
//8.将加密并编码后的内容解码成字节数组
byte [] byte_content= new BASE64Decoder().decodeBuffer(new String(hexStringToBytes(content)));
/*
* 解密
*/
byte [] byte_decode=cipher.doFinal(byte_content);
String AES_decode=new String(byte_decode,"utf-8");
return AES_decode;
// } catch (Exception e) {
// return null;
// }
}
public static SecretKey getKey(String strKey) {
try {
if (strKey == null) {
strKey = "";
}
KeyGenerator _generator = KeyGenerator.getInstance("AES");
SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG");
secureRandom.setSeed(strKey.getBytes());
_generator.init(128, secureRandom);
return _generator.generateKey();
} catch (Exception e) {
throw new RuntimeException(" 初始化**出现异常 ");
}
}
public static String bytesToHexString(byte[] src){
StringBuilder stringBuilder = new StringBuilder("");
if (src == null || src.length <= 0) {
return null;
}
for (int i = 0; i < src.length; i++) {
int v = src[i] & 0xFF;
String hv = Integer.toHexString(v);
if (hv.length() < 2) {
stringBuilder.append(0);
}
stringBuilder.append(hv);
}
return stringBuilder.toString();
}
public static byte[] hexStringToBytes(String hexString) {
if (hexString == null || hexString.equals("")) {
return null;
}
hexString = hexString.toUpperCase();
int length = hexString.length() / 2;
char[] hexChars = hexString.toCharArray();
byte[] d = new byte[length];
for (int i = 0; i < length; i++) {
int pos = i * 2;
d[i] = (byte) (charToByte(hexChars[pos]) << 4 | charToByte(hexChars[pos + 1]));
}
return d;
}
private static byte charToByte(char c) {
return (byte) "0123456789ABCDEF".indexOf(c);
}
public static void main(String[] args) {
AesUtils se=new AesUtils();
Scanner scanner=new Scanner(System.in);
/*
* 加密
*/
// System.out.println("使用AES对称加密,请输入加密的规则");
String encodeRules=Constants.ORDER_SALT;
// System.out.println("请输入要加密的内容:");
String content = "hello world";
// System.out.println("根据输入的规则"+encodeRules+"加密后的密文是:"+se.AESEncode(encodeRules, content));
/*
* 解密
*/
System.out.println("使用AES对称解密,请输入加密的规则:(须与加密相同)");
System.out.println("请输入要解密的内容(密文):");
content = "2b5344596661414976355961772f444d485668766e773d3d";
try {
System.out.println("根据输入的规则"+encodeRules+"解密后的明文是:"+se.AESDncode(encodeRules, content));
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
上一篇: java des加解密
下一篇: Java AES加密和解密