Skip to content

Instantly share code, notes, and snippets.

View ajitesh123's full-sized avatar

Ajitesh Abhishek ajitesh123

View GitHub Profile
>>> import hashlib
>>> def hash(mystring):
... hash_object=hashlib.md5(mystring.encode())
... print(hash_object.hexdigest())
...
>>>
>>> hash("Kellogg first block")
10a4826ea290595ef96e945b31054254