【搬运】Tea算法Java实现工具类

最近在做数据加密,目标是实现平台app的数据安全性,所以准备使用AES+Base64进行加密,适逢一个特长的json串AES加密不了,于是在谷歌了各种算法,判断是否合用,参见 各种加密算法比较 一文中对各种算法进行了详尽的比较。由于长字符串AES对其束手无策,所以打算试试这个最快的TEA算法,遂扒了扒,找到一个07年的老帖子,帖子链接 TEA加密算法java版 ,又因为作者是为了完成游戏的存储,所以有一个类找不到,所以我把代码拿过来进行了小小的修改,分享之。侵权删。

 package com.wode369.Test;

 /**
* Tea算法
* 每次操作可以处理8个字节数据
* KEY为16字节,应为包含4个int型数的int[],一个int为4个字节
* 加密解密轮数应为8的倍数,推荐加密轮数为64轮
* */
public class TeaUtil {
private final static int[] KEY = new int[]{//加密解密所用的KEY
0x789f5645, 0xf68bd5a4,
0x81963ffa, 0x458fac58
};
//加密
public static byte[] encrypt(byte[] content, int offset, int[] key, int times){//times为加密轮数
int[] tempInt = byteToInt(content, offset);
int y = tempInt[0], z = tempInt[1], sum = 0, i;
int delta=0x9e3779b9; //这是算法标准给的值
int a = key[0], b = key[1], c = key[2], d = key[3]; for (i = 0; i < times; i++) { sum += delta;
y += ((z<<4) + a) ^ (z + sum) ^ ((z>>5) + b);
z += ((y<<4) + c) ^ (y + sum) ^ ((y>>5) + d);
}
tempInt[0]=y;
tempInt[1]=z;
return intToByte(tempInt, 0);
}
//解密
public static byte[] decrypt(byte[] encryptContent, int offset, int[] key, int times){
int[] tempInt = byteToInt(encryptContent, offset);
int y = tempInt[0], z = tempInt[1], sum = 0, i;
int delta=0x9e3779b9; //这是算法标准给的值
int a = key[0], b = key[1], c = key[2], d = key[3];
if (times == 32)
sum = 0xC6EF3720; /* delta << 5*/
else if (times == 16)
sum = 0xE3779B90; /* delta << 4*/
else
sum = delta * times; for(i = 0; i < times; i++) {
z -= ((y<<4) + c) ^ (y + sum) ^ ((y>>5) + d);
y -= ((z<<4) + a) ^ (z + sum) ^ ((z>>5) + b);
sum -= delta;
}
tempInt[0] = y;
tempInt[1] = z; return intToByte(tempInt, 0);
}
//byte[]型数据转成int[]型数据
private static int[] byteToInt(byte[] content, int offset){ int[] result = new int[content.length >> 2];//除以2的n次方 == 右移n位 即 content.length / 4 == content.length >> 2
for(int i = 0, j = offset; j < content.length; i++, j += 4){
result[i] = transform(content[j + 3]) | transform(content[j + 2]) << 8 |
transform(content[j + 1]) << 16 | (int)content[j] << 24;
}
return result; }
//int[]型数据转成byte[]型数据
private static byte[] intToByte(int[] content, int offset){
byte[] result = new byte[content.length << 2];//乘以2的n次方 == 左移n位 即 content.length * 4 == content.length << 2
for(int i = 0, j = offset; j < result.length; i++, j += 4){
result[j + 3] = (byte)(content[i] & 0xff);
result[j + 2] = (byte)((content[i] >> 8) & 0xff);
result[j + 1] = (byte)((content[i] >> 16) & 0xff);
result[j] = (byte)((content[i] >> 24) & 0xff);
}
return result;
}
//若某字节为负数则需将其转成无符号正数
private static int transform(byte temp){
int tempInt = (int)temp;
if(tempInt < 0){
tempInt += 256;
}
return tempInt;
} //通过TEA算法加密信息
public static byte[] encryptByTea(String info){
byte[] temp = info.getBytes();
int n = 8 - temp.length % 8;//若temp的位数不足8的倍数,需要填充的位数
byte[] encryptStr = new byte[temp.length + n];
encryptStr[0] = (byte)n;
System.arraycopy(temp, 0, encryptStr, n, temp.length);
byte[] result = new byte[encryptStr.length];
for(int offset = 0; offset < result.length; offset += 8){
byte[] tempEncrpt = TeaUtil.encrypt(encryptStr, offset, KEY, 32);
System.arraycopy(tempEncrpt, 0, result, offset, 8);
}
return result;
}
//通过TEA算法解密信息
public static String decryptByTea(byte[] secretInfo){
byte[] decryptStr = null;
byte[] tempDecrypt = new byte[secretInfo.length];
for(int offset = 0; offset < secretInfo.length; offset += 8){
decryptStr = TeaUtil.decrypt(secretInfo, offset, KEY, 32);
System.arraycopy(decryptStr, 0, tempDecrypt, offset, 8);
} int n = tempDecrypt[0];
return new String(tempDecrypt, n, decryptStr.length - n); } public static void main(String[] args){
String info = "{"
+ "'name':'xyz',"
+ "'age':'16',"
+ "'gender':'male'"
+ "}";
System.out.println("原数据:" + info);
System.out.println("开始时间:"+System.currentTimeMillis());
byte[] encryptInfo = encryptByTea(info);
System.out.println("加密后的数据:");
for(byte i : encryptInfo)
System.out.print(i + " ");
System.out.println();
String decryptInfo = decryptByTea(encryptInfo);
System.out.println("结束时间:"+System.currentTimeMillis());
System.out.print("解密后的数据:");
System.out.println(decryptInfo); } }

输出:

 原数据:{'name':'xyz','age':'16','gender':'male'}
开始时间:1512461129393
加密后的数据:
-21 -88 6 86 88 57 -75 18 -56 -77 91 17 8 46 -109 17 -123 5 64 -95 -65 32 41 26 109 54 49 17 -20 -84 -111 -3 39 67 -44 21 60 80 4 -79 -52 -125 -15 65 -99 61 100 93
结束时间:1512461129394
解密后的数据:{'name':'xyz','age':'16','gender':'male'}

其实,这个工具类修改完成后,我再次使用那个比较长的字符串去试验了下,还是不可以……这就很尴尬了- .-||  但是经过测试,这个TEA算法的确很快。

上一篇:PAT——乙级真题1003代码


下一篇:MVC 全局拦截aciton