| 09-26-2003, 08:50 PM | #1 |
Does anyone have an idea for an encyption method that I can layer on top of what I'm already doing? Here's what I do so far...
|
| 09-26-2003, 09:03 PM | #2 |
as far as I know there is no xor function in war3. Some guy made a 1 way xor function encryptor (read: worthless), if you have made a 2 way xor function I will be much intrested to see how you did it. |
| 09-26-2003, 09:18 PM | #3 |
| 09-26-2003, 09:22 PM | #4 |
A xor function which uses your name as the key with a byte splitter can actually be a very good encryption. |
| 09-26-2003, 10:00 PM | #5 |
I've already done all the stuff I listed without a problem. It's just a binary XOR type thing: Code:
function XOR takes string bit1, string bit2 returns string
if bit1==bit2 then
return "0"
else
return "1"
endif
endfunction |
| 09-26-2003, 10:44 PM | #6 |
hey that looks like VB code! i reconzied it from my programming class : ) |
| 09-26-2003, 11:12 PM | #7 |
Yup, it's kind of a mix between Basic and C. With a bunch of extra functions for dealing with the actual map. |
