Files
SuperMega/data/source/carrier/decoder/xor_2.c
T
2024-05-20 09:21:44 +01:00

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