[JASS] String Encrypted

Status
Not open for further replies.
To encrypt a string, you must convert it to a number first. If your string is ASCII, then each character is a byte. If it's a Warcraft 3 string, then you can do all valid Warcraft 3 characters. You can use a library like BigInt to do this.


Once you have it converted, there are several ways to encrypt it. If you use a binary base, then you can use something like AES.
 
Status
Not open for further replies.
Top