-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1acc53
commit 44c21ff
Showing
3 changed files
with
160 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
package org.m2sec.core.common; | ||
|
||
/** | ||
* @author: outlaws-bai | ||
* @date: 2024/8/4 16:46 | ||
* @description: | ||
*/ | ||
|
||
public class XXTEATools { | ||
private static final int DELTA = 0x9E3779B9; | ||
|
||
private static int MX(int sum, int y, int z, int p, int e, int[] k) { | ||
return (z >>> 5 ^ y << 2) + (y >>> 3 ^ z << 4) ^ (sum ^ y) + (k[p & 3 ^ e] ^ z); | ||
} | ||
|
||
|
||
public static byte[] encrypt(byte[] data, byte[] key) { | ||
assert key.length == 16; | ||
if (data.length == 0) { | ||
return data; | ||
} | ||
return toByteArray( | ||
encrypt(toIntArray(data, true), toIntArray(key, false)), false); | ||
} | ||
|
||
public static byte[] decrypt(byte[] data, byte[] key) { | ||
assert key.length == 16; | ||
if (data.length == 0) { | ||
return data; | ||
} | ||
return toByteArray( | ||
decrypt(toIntArray(data, false), toIntArray(key, false)), true); | ||
} | ||
|
||
private static int[] encrypt(int[] v, int[] k) { | ||
int n = v.length - 1; | ||
|
||
if (n < 1) { | ||
return v; | ||
} | ||
int p, q = 6 + 52 / (n + 1); | ||
int z = v[n], y, sum = 0, e; | ||
|
||
while (q-- > 0) { | ||
sum = sum + DELTA; | ||
e = sum >>> 2 & 3; | ||
for (p = 0; p < n; p++) { | ||
y = v[p + 1]; | ||
z = v[p] += MX(sum, y, z, p, e, k); | ||
} | ||
y = v[0]; | ||
z = v[n] += MX(sum, y, z, p, e, k); | ||
} | ||
return v; | ||
} | ||
|
||
private static int[] decrypt(int[] v, int[] k) { | ||
int n = v.length - 1; | ||
|
||
if (n < 1) { | ||
return v; | ||
} | ||
int p, q = 6 + 52 / (n + 1); | ||
int z, y = v[0], sum = q * DELTA, e; | ||
|
||
while (sum != 0) { | ||
e = sum >>> 2 & 3; | ||
for (p = n; p > 0; p--) { | ||
z = v[p - 1]; | ||
y = v[p] -= MX(sum, y, z, p, e, k); | ||
} | ||
z = v[n]; | ||
y = v[0] -= MX(sum, y, z, p, e, k); | ||
sum = sum - DELTA; | ||
} | ||
return v; | ||
} | ||
|
||
|
||
private static int[] toIntArray(byte[] data, boolean includeLength) { | ||
int n = (((data.length & 3) == 0) | ||
? (data.length >>> 2) | ||
: ((data.length >>> 2) + 1)); | ||
int[] result; | ||
|
||
if (includeLength) { | ||
result = new int[n + 1]; | ||
result[n] = data.length; | ||
} else { | ||
result = new int[n]; | ||
} | ||
n = data.length; | ||
for (int i = 0; i < n; ++i) { | ||
result[i >>> 2] |= (0x000000ff & data[i]) << ((i & 3) << 3); | ||
} | ||
return result; | ||
} | ||
|
||
private static byte[] toByteArray(int[] data, boolean includeLength) { | ||
int n = data.length << 2; | ||
|
||
if (includeLength) { | ||
int m = data[data.length - 1]; | ||
n -= 4; | ||
if ((m < n - 3) || (m > n)) { | ||
return null; | ||
} | ||
n = m; | ||
} | ||
byte[] result = new byte[n]; | ||
|
||
for (int i = 0; i < n; ++i) { | ||
result[i] = (byte) (data[i >>> 2] >>> ((i & 3) << 3)); | ||
} | ||
return result; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters