Does anyone have any suggestions on text obfuscation techniques?
A large part of my game is going to be content that is going to be stored in JSON files. Since we know that these files could be easily accessible to someone who knows how to open an iTunes IPA file or Android APK file, I want to obfuscate the text so someone can’t go in and just easily grab the content directly.
I was going to encrypt the data and then decrypt it using the OpenSSL plugin but that doesn’t seem to work and haven’t gotten any possible suggestions on that front (http://forums.coronalabs.com/topic/48495-cannot-decrypt-data-correctly-with-openssl-plugin/), so wondering if there was some quick, but effective, way to obfuscate the text some other way.
Has anyone done this before?