summaryrefslogtreecommitdiffstats
path: root/solve/solve.py
blob: 2b9467f5ce58f686a7a403cc3efc097f6f0462b0 (plain) (blame)
1
2
3
4
5
enc = bytes.fromhex("02ea02e8fcfdbdfdf2ece8fdfbeaf7fcefb9fbf6eafdf2f8f700")
dec = []
for c in enc:
    dec.append((c + 0x77) % 0x100)
print(bytes(dec))