mirror of
https://github.com/dobin/SuperMega
synced 2026-06-03 01:27:11 +00:00
6 lines
193 B
C
6 lines
193 B
C
// Multibyte XOR (untested)
|
|
// Need: key, key_len
|
|
for ( int i = 0; i < {{PAYLOAD_LEN}}; i++ ) {
|
|
dest[i] = supermega_payload[i] ^ key[i % key_len];
|
|
}
|