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.

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

It is possible to do something similar to what you did in java.

Try:

var offset:int = 10;
for (i = 0; i < string.length; i++) {

string[i] = string.charCodeAt(i) + offset;

}

Where string is the text you want to change, what this does is gets the numeric unicode value of the character at each index of the string and modifies it's value by offset.

To decode you run the same code but in reverse:

for (i = 0; i < string.length; i++) {

string[i] = string.charCodeAt(i) - offset;

}
link|improve this answer
feedback

Why not just reverse the text? That is a simple yet effective way.

Another would be to break the text in groups of 2 characters each, and reverse them, and then join the string again.

link|improve this answer
feedback

rot13 would be nice and simple for this. I'm sure there are a few AS3 tutorials or libraries out there. Another common option is base64, also with existing libraries.

link|improve this answer
feedback

If you really wanna do this, why not use a established cryptography Cipher?

Get as3crypto from here http://code.google.com/p/as3crypto/downloads/detail?name=Crypto.zip&can=2&q=

Then here's how to use RC4 (one of the many ciphers you can use):

import com.hurlant.util.Hex;
import flash.utils.ByteArray;
import com.hurlant.crypto.prng.ARC4;

var key:ByteArray = Hex.toArray("SUPER SECRET PASSWORD THAT YOUR USER WILL FIND OUT IF HE DECOMPILES YOUR SWF ANYWAY");
var pt:ByteArray = Hex.toArray("THIS IS THE ACTUAL FILE YOU'RE ENCRYPTING OR DECRYPTING");
var rc4:ARC4 = new ARC4(key);
rc4.encrypt(pt);
var out : String = Hex.fromArray(pt);
// save out to file

// load loadedFile from file
pt = Hex.toArray(loadedFile);
rc4.init(key);
rc4.decrypt(pt);
out = Hex.fromArray(pt);
// parse out's information

This might seem a little overkill but it actually is easier to use than to make your own encryption/decryption thing, and it has been tested and used a bunch of times.

link|improve this answer
This sounds like a good solution. I'm going with the char shift method above with some modification, but if I was doing this for a professional project I'd probably go with this sort of solution. – mouseas Nov 16 '11 at 15:09
Check this one too: stackoverflow.com/questions/3868375/… (Juan Pablo solution) – AsTheWormTurns Nov 17 '11 at 7:45
feedback

I don't know how you save the game, but if you use Local Shared Objects, your text is saved as binary data (while variable names remain human readable).

link|improve this answer
I'm planning to use two methods of saving - shared objects for auto-save, and files the user puts on their hard drive for manual saving. – mouseas Nov 16 '11 at 15:32
Would you tell me more about the second method? – AsTheWormTurns Nov 17 '11 at 7:36
The plan is to have the player able to save a separate file using FileReference. They have to pick the location each time they save because of the limit flash (quite rightly) puts on browser apps, so I find the need to still save games to a shared object for automatic, regular saving. See this code sample for a way to load files from the user's hard drive. – mouseas Nov 17 '11 at 23:52
I perfectly know how FileReference works. What I don't understand is how you write to file. – AsTheWormTurns Nov 18 '11 at 11:09
I haven't got to that part yet. I know there is a save() function for FileReference, so my thought is adding strings to a ByteArray until it's ready to be saved, assign it to the FileReference, then call save()? I'll be figuring this stuff out in the next few days. – mouseas Nov 18 '11 at 15:28
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.