1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-07 04:20:39 -07:00
moth/doc/2010-10-NMT/posters/descavenge.py
2011-08-29 09:38:45 -06:00

14 lines
258 B
Python
Executable file

#! /usr/bin/python3
import binascii
import sys
def mask(buf1, buf2):
return bytes(a^b for (a,b) in zip(buf1, buf2))
t = bytes([0]*29)
for line in sys.stdin:
line = line.strip().encode()
a = binascii.unhexlify(line)
t = mask(t, a)
print(t)