Skip to content

Migrations

Efra Espada edited this page May 26, 2019 · 6 revisions

Changelog

SC Version Reveal resource Reveal value Obfuscate value Gradle Version Logic
0.x getString() decryptString() encryptString() 3.x Java
1.2 deobfuscate() deobfuscate() obfuscate() 4.x C++
1.5 reveal() reveal() obfuscate() 5.x C++

From v1.x, the obfuscation output doesn't have the same value from older versions.

Stored obfuscated data in v0.x

This change only affects those apps obfuscating and storing data. You can use the deprecated method SC.decryptString(String value) for revealing the original data and obfuscate it again with the new method.

String original = SC.decryptString(v0_obfuscated_string); // v0.x methods are deprecated
String v1_obfuscated_string = SC.obfuscate(original)
Clone this wiki locally