Fork me on GitHub

Java解决Base64包问题

java中使用AES对数据进行加解密
算法模式:ECB 密钥 长度:128bits 16位长 偏移量: 默认 补码方式:PKCS5Padding 解密串编码方式:base64
密钥为16位长度的字符串

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
* 使用参数中的密钥加密
* @param 明文
* @param 密钥
* @return 密文
*/
public static String Encrypt(String sSrc, String sKey) {
try{
if (sKey == null) {
System.out.print("Key为空null");
return null;
}
// 判断Key是否为16位
if (sKey.length() != 16) {
System.out.print("Key长度不是16位");
return null;
}
byte[] raw = sKey.getBytes("utf-8");
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");//"算法/模式/补码方式"
cipher.init(Cipher.ENCRYPT_MODE, skeySpec);
byte[] encrypted = cipher.doFinal(sSrc.getBytes("utf-8"));
return new Base64().encodeToString(encrypted);//此处使用BASE64做转码功能,同时能起到2次加密的作用。
}catch(Exception e){
e.printStackTrace();
return null;
}
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* 使用参数中的密钥解密
* @param 密文
* @param 密钥
* @return 明文
*/
public static String Decrypt(String sSrc, String sKey) {
try {
// 判断Key是否正确
if (sKey == null) {
System.out.print("Key为空null");
return null;
}
// 判断Key是否为16位
if (sKey.length() != 16) {
System.out.print("Key长度不是16位");
return null;
}
byte[] raw = sKey.getBytes("utf-8");
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
cipher.init(Cipher.DECRYPT_MODE, skeySpec);
byte[] encrypted1 = new Base64().decode(sSrc);//先用base64解密
try {
byte[] original = cipher.doFinal(encrypted1);
String originalString = new String(original,"utf-8");
return originalString;
} catch (Exception e) {
System.out.println(e.toString());
return null;
}
} catch (Exception ex) {
System.out.println(ex.toString());
return null;
}
}
1
2
3
4
5
6
7
8
测试方法
String password = "ABCDEFGHIJKLMNOP";
String content1 = "我的博客名是geekfly";
System.out.println("加密前:" + content1);
String content2 = Encrypt(content1, password);
System.out.println("加密后:" + content2);
String content3 = Decrypt(content2, password);
System.out.println("解密后:" + content3);

在这个过程中出现个问题,base64 cannot be resolved to a type,
问题显示: The import org.apache cannot be resolved.
解决方法: 去 http://hc.apache.org/downloads.cgi 下载, HttpClient4.5.3.zip, 解压后得到\httpcomponents-client-4.5.3\lib, 里面有很多jar包jar
加进来jar
这样就好了!jar
总结下:org.apache, 不是标准的java中的库。所以eclipse中,无法自动识别。
org.apache下包括了一堆相关的库,此处用到的是org.apache.http, 所以:需要找到对应的org.apache.http相关的jar包,然后加到当前的项目中。

Your support will encourage me to continue to create!