Decompiling Android by Godfrey Nolan

Decompiling Android by Godfrey Nolan

Author:Godfrey Nolan
Language: eng
Format: epub, pdf
Publisher: Apress®
Published: 2012-07-03T16:00:00+00:00


private void calcPayroll(RecordSet rs) {

while (rs.hasMore()) {

Employee employee = rs.getNext(true);

employee.updateSalary();

DistributeCheck(employee);

}

}

// After Obfuscation

private void a(a rs) {

while (rs.a()) {

a = rs.a(true);

a.a();

a(a);

}

}

Giving multiple names to the different methods can be very confusing. True, the overloaded methods are difficult to understand, but they aren’t impossible to comprehend. They too can be renamed into something easier to read. Having said that, operator overloading has proved to be one of the best layout-obfuscation techniques to beat because it breaks the link between the original and the obfuscated Java code.



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.