Loading, please wait...

Hashing

To find the hash of a file

 

 

Code:

import hashlib
def hash_file(filename):
h = hashlib.sha1()
with open(filename,'rb') as file:
chunk = 0
while chunk != b'':
chunk = file.read(1024)
h.update(chunk)
return h.hexdigest()
message = hash_file("track1.mp3")
print(message)

 

 

Then, Click on the run button.