1
0
Fork 0

initial commit

This commit is contained in:
ston1th 2018-10-10 22:10:40 +02:00
commit 7be2b66bd2
14 changed files with 2206 additions and 0 deletions

7
btc1.py Executable file
View file

@ -0,0 +1,7 @@
#!/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")