I am working on the saving/loading functionality of my AS3 game. I plan to let the player save their game to their hard drive from a browser-run game. I want to scramble the text I'm saving so a human can't really read it if they open the file as text.
What is a good method to scramble text before saving, and then unscramble after opening?
I know in Java it's possible to take a char and add or subtract from it to change the char, which was an extremely simple method. What can be done simply in ActionScript 3?
Keep in mind, I'm looking for simple and easy rather than secure. All of the cryptography sites I've checked for solution are more complicated than I can understand at this point, and are focused on making the most secure encryption rather than on easy integration.