can anyone explain me what this does?
i'm confused with it.
i'm confused with it.
DISCORD: xexghosted
(03-27-2020 - 06:15 PM)ChrissyBoy Wrote: Very poor encryption method, even on compile the raw data is still visible. If you're going to try and encrypt variables I'd suggest incremented XOR, AES or (if you can) write your own multi-layer encryption method.the reason you can still see the data is because the encryption method is in the source it need to be in a tool and the decrypt rewite a tiny bit different
(03-30-2020 - 04:30 AM)local_hookah Wrote: i bet giths just did this to hide it from peopleI don't think he'd do something like that, the guy hates macros.
void _incremental_xor(byte* array, int arraysize, byte basekey)
{
for (int i = 0x00; i < arraysize; i++)
{
byte xorkey = (basekey + (i * 0x01));
array[i] ^= xorkey;
}
}