java实现AES对称加密解密
在⽹上到了⼀个实现⽅法,但是⽤的⼀些⽅法新的jdk已经没有了,所以就优化了⼀下,不⽤引⼊其他包,jdk原⽣⽅法即可实现。Base64Encoder和Base64Decoder⽆法使⽤解决办法
原⽅法
BASE64Encoder encoder = new BASE64Encoder();
String imagestr = de(captcha);
BASE64Decoder decoder = new BASE64Decoder();
byte[] bytes = decoder.decodeBuffer(imagestr);
现⽅法
import java.util.Base64.Encoder
import java.util.Base64.Decoder
Encoder encoder = Encoder();
String result = deToString(byteArray);
Decoder decoder = Decoder();
byte[] result = decoder.decode(str);
原因是/lib/tool.jar和/lib/rt.jar已经从Java SE 9中删除
改动后代码:
package com.appLoginmon;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.util.Base64;
import java.util.Scanner;
pto.BadPaddingException;
pto.Cipher;
pto.IllegalBlockSizeException;
pto.KeyGenerator;
pto.NoSuchPaddingException;
pto.SecretKey;
pto.spec.SecretKeySpec;
public class AESUtil1 {
// private static final String KEY_ALGORITHM = "AES";
/
/ private static final String DEFAULT_CIPHER_ALGORITHM =
// "AES/CBC/PKCS5Padding";//加密算法
// private static final byte[] IV = "0000000000000000".getBytes(); //初始化向量
/*
* 加密 1.构造密钥⽣成器 2.根据ecnodeRules规则初始化密钥⽣成器 3.产⽣密钥 4.创建和初始化密码器 5.内容加密 6.返回字符串
*/
public static String AESEncode(String encodeRules, String content) {
try {
// 1.构造密钥⽣成器,指定为AES算法,不区分⼤⼩写
KeyGenerator keygen = Instance("AES");
// 2.根据ecnodeRules规则初始化密钥⽣成器
// ⽣成⼀个128位的随机源,根据传⼊的字节数组
//keygen.init(128, new Bytes()));
SecureRandom secureRandom = Instance("SHA1PRNG") ;
secureRandom.Bytes());
keygen.init(128, secureRandom);
// 3.产⽣原始对称密钥
SecretKey original_key = ateKey();
// 4.获得原始对称密钥的字节数组
byte[] raw = Encoded();
// 5.根据字节数组⽣成AES密钥
SecretKey key = new SecretKeySpec(raw, "AES");
/
/ 6.根据指定算法AES⾃成密码器
Cipher cipher = Instance("AES");
// 7.初始化密码器,第⼀个参数为加密(Encrypt_mode)或者解密解密(Decrypt_mode)操作,第⼆个参数为使⽤的KEY cipher.init(Cipher.ENCRYPT_MODE, key);
// 8.获取加密内容的字节数组(这⾥要设置为utf-8)不然内容中如果有中⽂和英⽂混合中⽂就会解密为乱码
byte[] byte_encode = Bytes("utf-8");
// 9.根据密码器的初始化⽅式--加密:将数据加密
byte[] byte_AES = cipher.doFinal(byte_encode);
java源代码加密// 10.将加密后的数据转换为字符串
// 这⾥⽤Base64Encoder中会不到包
// 解决办法:
// 在项⽬的Build path中先移除JRE System Library,再添加库JRE System Library,重新编译后就⼀切正常了。
String AES_encode = new Encoder().encodeToString(byte_AES));
// 11.将字符串返回
return AES_encode;
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
} catch (NoSuchPaddingException e) {
e.printStackTrace();
} catch (InvalidKeyException e) {
e.printStackTrace();
} catch (IllegalBlockSizeException e) {
e.printStackTrace();
} catch (BadPaddingException e) {
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
// 如果有错就返加nulll
return null;
}
/*
* 解密解密过程: 1.同加密1-4步 2.将加密后的字符串反纺成byte[]数组 3.将加密内容解密
*/
public static String AESDncode(String encodeRules, String content) {
try {
// 1.构造密钥⽣成器,指定为AES算法,不区分⼤⼩写
KeyGenerator keygen = Instance("AES");
// 2.根据ecnodeRules规则初始化密钥⽣成器
// ⽣成⼀个128位的随机源,根据传⼊的字节数组
//keygen.init(128, new Bytes()));
SecureRandom secureRandom = Instance("SHA1PRNG") ;
secureRandom.Bytes());
keygen.init(128, secureRandom);
/
/ 3.产⽣原始对称密钥
SecretKey original_key = ateKey();
// 4.获得原始对称密钥的字节数组
byte[] raw = Encoded();
// 5.根据字节数组⽣成AES密钥
SecretKey key = new SecretKeySpec(raw, "AES");
// 6.根据指定算法AES⾃成密码器
Cipher cipher = Instance("AES");
// 7.初始化密码器,第⼀个参数为加密(Encrypt_mode)或者解密(Decrypt_mode)操作,第⼆个参数为使⽤的KEY
cipher.init(Cipher.DECRYPT_MODE, key);
// 8.将加密并编码后的内容解码成字节数组
byte[] byte_content = Decoder().decode(content);
/*
* 解密
*/
byte[] byte_decode = cipher.doFinal(byte_content);
String AES_decode = new String(byte_decode, "utf-8");
return AES_decode;
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论