Skip to content

Commit

Permalink
move reverse-engineering classes to separate module
Browse files Browse the repository at this point in the history
  • Loading branch information
EpicPlayerA10 committed Oct 11, 2024
1 parent 7a1ae63 commit b5218d4
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 9 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<module>deobfuscator-api</module>
<module>deobfuscator-impl</module>
<module>deobfuscator-transformers</module>
<module>reverse-engineering</module>
</modules>

<properties>
Expand Down
File renamed without changes.
20 changes: 20 additions & 0 deletions reverse-engineering/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>uwu.narumi</groupId>
<artifactId>Diobfuscator</artifactId>
<version>2.0-SNAPSHOT</version>
</parent>

<artifactId>reverse-engineering</artifactId>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package reverseengineering.zelix.enhancedstringenc;
package zelix.enhancedstringenc;

/**
* Decompiled using Procyon because Vineflower is decompiling it wrongly...
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package reverseengineering.zelix.enhancedstringenc;
package zelix.enhancedstringenc;

public class ManyStringsOriginal {
private static final String[] a;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package reverseengineering.zelix.enhancedstringenc;
package zelix.enhancedstringenc;

public class SomeStrings {
private static final String[] staticObfuscatedStrings;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package reverseengineering.zelix.enhancedstringenc;
package zelix.enhancedstringenc;

/**
* This is just a very similar class to {@link SomeStrings} but with different strings. It exists here to compare two classes.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package reverseengineering.zelix.longdecrypter;
package zelix.longdecrypter;

import java.util.concurrent.ConcurrentHashMap;

Expand Down Expand Up @@ -324,7 +324,7 @@ private void initCachedDecryptersMap() {
var10000.put(SimpleLongDecrypter.getCachedDecrypter(364818715671619056L), SimpleLongDecrypter.getCachedDecrypter(-7753376661691852493L));
var10000.put(SimpleLongDecrypter.getCachedDecrypter(6116050039557398859L), SimpleLongDecrypter.getCachedDecrypter(-3612871415275240979L));
var10000.put(SimpleLongDecrypter.getCachedDecrypter(-6608651480983725416L), SimpleLongDecrypter.getCachedDecrypter(5220624081610830673L));
var10000.put(SimpleLongDecrypter.getCachedDecrypter(-2531369932321710358L), reverseengineering.zelix.longdecrypter.SimpleLongDecrypter.getCachedDecrypter(6770957041204362784L));
var10000.put(SimpleLongDecrypter.getCachedDecrypter(-2531369932321710358L), SimpleLongDecrypter.getCachedDecrypter(6770957041204362784L));
var10000.put(SimpleLongDecrypter.getCachedDecrypter(385158871454716980L), SimpleLongDecrypter.getCachedDecrypter(5193389589470841672L));
var10000.put(SimpleLongDecrypter.getCachedDecrypter(1181471781776655964L), SimpleLongDecrypter.getCachedDecrypter(2923672309141886419L));
var10000.put(SimpleLongDecrypter.getCachedDecrypter(-1421322407309228933L), SimpleLongDecrypter.getCachedDecrypter(-4532644287730267790L));
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package reverseengineering.zelix.longdecrypter;
package zelix.longdecrypter;

public interface ILongDecrypter {
void setChild(ILongDecrypter parent);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package reverseengineering.zelix.longdecrypter;
package zelix.longdecrypter;

import java.lang.invoke.MethodHandles;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package reverseengineering.zelix.longdecrypter;
package zelix.longdecrypter;

import java.util.ArrayList;
import java.util.Vector;
Expand Down

0 comments on commit b5218d4

Please sign in to comment.