Files
SuperMega/data/source/carrier/decoder/xor_2.c
T
2024-03-27 20:13:14 +00:00

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];
}