1
0
Fork 0
btc310/btc1.py
2018-10-10 22:10:40 +02:00

7 lines
240 B
Python
Executable file

#!/usr/bin/python
key = "20181002"
encrypted = "511B2033232841053022B0FE52ED0F7A165B52C7E75112F656FC4B"
for i in range(len(encrypted)):
print(hex((int(encrypted[i],16)-int(key[i%len(key)])) % 16))
if i %18 == 0:
print("\n")