JavaObfuscatorTest
JavaObfuscatorTest copied to clipboard
A list of Java obfuscators, obfuscated samples and benchmarks.
**Issue** Calc test is consistent due to a lack of warmup **Solution** Add a call for each method _before_ it is iterated. Then, iterate the methods as done previously. Then...
**Issue** The counter test is not accurate. **Reasoning** Most higher end obfuscators add transient or cached fields. This is inconsistent with the test's logic. Instead, the test should check if...
How do I get OpenJnic? It was deleted, maybe you could give it to me?
In Java 8 or better, see [jls](https://docs.oracle.com/javase/specs/jls/se8/html/jls-15.html#jls-15.16). We can construct a lambda based instance for interfaces. ```java package tech.skidonion.identifiersobfuscating; import java.util.ArrayList; import java.util.List; public class LambdaTest { interface SAMInterfaceA {...