import hashlib
text = (“94a89e8799ce8e3a0e876261e1fb10326ba1cf08”)
for nonce in range(10000000): input = text+str(nonce) hash = hashlib.sha256(input.encode()).hexdigest() print (input, hash) if hash.startswith(“0000”): print (“Found Hash”) break

Feedback

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.

Post your comment on this topic.

Post Comment