mirror of
https://github.com/eshard/obfuscator-llvm
synced 2026-06-08 14:07:01 +00:00
99a237be75
dev-commits from corporate branch 13.x were squashed
8 lines
153 B
C
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;
|
|
}
|
|
}
|