12 lines
173 B
Python
12 lines
173 B
Python
#!/usr/bin/python3
|
|
|
|
def offset10(c):
|
|
return chr((c - 10) % 256)
|
|
|
|
f = open('ch7.bin', mode='rb')
|
|
data = f.read()
|
|
f.close()
|
|
|
|
msg = map(offset10, data)
|
|
print("".join(msg))
|