add mrsnowy

This commit is contained in:
aaron
2021-12-05 19:43:20 +01:00
parent 261d2a8413
commit cafc5422e9
25 changed files with 152664 additions and 14344445 deletions

View File

@@ -0,0 +1,12 @@
# for (i = 0; (uint32_t)i < 0x100; i = i + 1) {
# buffer[i] = buffer[i] ^ 0xf3;
# }
buf = b'\xbb\xa7\xb1\x88\x86\x83\x8b\xac\xc7\xc2\x9d\x87\xac\xc6\xc3\xac\x9b\xc7\x81\x97\xd2\xd2\x8e'
out = []
for i in range(len(buf)):
out.append(chr(buf[i] ^ 0xf3))
print(''.join(out))