14 lines
210 B
Python
14 lines
210 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import hashlib
|
||
|
|
||
|
key = "yzbqklnj"
|
||
|
|
||
|
i = 0
|
||
|
while True:
|
||
|
result = hashlib.md5(f'{key}{i}'.encode())
|
||
|
if result.hexdigest().startswith("0"*6):
|
||
|
print(i)
|
||
|
break
|
||
|
i += 1
|