mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 19:49:11 +03:00
Merge branch 'feature/eccrypt' of github.com:GravitLauncher/Launcher into feature/eccrypt
This commit is contained in:
commit
8f779044fc
2 changed files with 55 additions and 1 deletions
|
@ -0,0 +1,54 @@
|
||||||
|
package pro.gravit.utils.helper;
|
||||||
|
|
||||||
|
import java.util.Objects;
|
||||||
|
import java.util.function.LongSupplier;
|
||||||
|
|
||||||
|
public final class CryptoHelper {
|
||||||
|
public static byte[] encode(byte[] txt, String pKey) {
|
||||||
|
Objects.requireNonNull(txt);
|
||||||
|
Objects.requireNonNull(pKey);
|
||||||
|
byte[] key = SecurityHelper.fromHex(pKey);
|
||||||
|
byte[] res = new byte[txt.length];
|
||||||
|
for (int i = 0; i < txt.length; i++)
|
||||||
|
res[i] = (byte) (txt[i] ^ key[i % key.length]);
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static byte[] decode(byte[] pText, String pKey) {
|
||||||
|
Objects.requireNonNull(pText);
|
||||||
|
Objects.requireNonNull(pKey);
|
||||||
|
byte[] res = new byte[pText.length];
|
||||||
|
byte[] key = SecurityHelper.fromHex(pKey);
|
||||||
|
for (int i = 0; i < pText.length; i++)
|
||||||
|
res[i] = (byte) (pText[i] ^ key[i % key.length]);
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String randomToken(int depth) {
|
||||||
|
VerifyHelper.verifyInt(depth, VerifyHelper.POSITIVE, "Depth must be positive");
|
||||||
|
StringBuilder sb = new StringBuilder(SecurityHelper.TOKEN_STRING_LENGTH*depth);
|
||||||
|
for (int i = 0; i < depth; i++)
|
||||||
|
sb.append(SecurityHelper.randomStringToken());
|
||||||
|
return sb.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
private CryptoHelper() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class StaticRandom implements LongSupplier {
|
||||||
|
private volatile long rnd;
|
||||||
|
|
||||||
|
public StaticRandom(long rnd) {
|
||||||
|
this.rnd = rnd;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public long getAsLong() {
|
||||||
|
this.rnd ^= (this.rnd << 21);
|
||||||
|
this.rnd ^= (this.rnd >>> 35);
|
||||||
|
this.rnd ^= (this.rnd << 4);
|
||||||
|
return this.rnd;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -485,7 +485,7 @@ public static byte[] decrypt(String seed, byte[] encrypted) throws Exception {
|
||||||
return decrypt(getRawKey(seed.getBytes()), encrypted);
|
return decrypt(getRawKey(seed.getBytes()), encrypted);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static byte[] HexToByte(String hexString) {
|
public static byte[] fromHex(String hexString) {
|
||||||
int len = hexString.length() / 2;
|
int len = hexString.length() / 2;
|
||||||
byte[] result = new byte[len];
|
byte[] result = new byte[len];
|
||||||
for (int i = 0; i < len; i++) {
|
for (int i = 0; i < len; i++) {
|
||||||
|
|
Loading…
Reference in a new issue