mirror of
https://github.com/dobin/SuperMega
synced 2026-06-03 09:37:11 +00:00
6 lines
162 B
C
6 lines
162 B
C
// Multibyte XOR
|
|
char *key = "{{XOR_KEY2}}";
|
|
for ( int i = 0; i < {{PAYLOAD_LEN}}; i++ ) {
|
|
dest[i] = supermega_payload[i] ^ key[i % 2];
|
|
}
|