Files
Axel Cohen 99a237be75 Add a string obfuscation pass
dev-commits from corporate branch 13.x were squashed
2026-03-11 18:56:31 +01:00

8 lines
153 B
C

#include <string.h>
void decodeString(char *str, int length, unsigned char key) {
for (int i = 0; i < length; i++) {
str[i] ^= key;
}
}