Today we are going to share a Python program to find Hash of a file. If you are a python beginner and want to start learning the python programming, then keep your close attention in this tutorial as I am going to share a Python program to find Hash of file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import hashlib def hash_file(filename): #create a hash object 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("freewebmentor.mp3") print(message) |
593d7356947eec543c50b76a1852f92427gt48we
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.