Update DecryptXOR.java

This commit is contained in:
potzplitz 2024-10-17 11:45:55 +02:00 committed by GitHub
parent bd754f04e6
commit 49f80a53be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,7 +16,7 @@ import org.apache.commons.codec.binary.Base64;
public class DecryptXOR {
private static final String[] SAVES = {"CCGameManager.dat"};
private static final String[] SAVES = {"CCGameManager.dat"};
private static final int XOR_KEY = 11;
private static byte[] xor(byte[] data, int key) {
@ -43,6 +43,8 @@ public class DecryptXOR {
return bos.toByteArray();
}
System.out.println("hi");
public static void decryptAndWriteFiles() throws IOException {
String appDataPath = System.getenv("LOCALAPPDATA") + "\\GeometryDash\\";
for (String save : SAVES) {