Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,959 questions

51,901 answers

573 users

How to hash a file using the SHA-1 hashing algorithm in Python

2 Answers

0 votes
import hashlib

BLOCK_SIZE = 1024

def hash_file(filename):
    sha1 = hashlib.sha1()
    with open(filename, 'rb') as file:
        buf = file.read(BLOCK_SIZE)
        while len(buf) > 0:
            sha1.update(buf)
            buf = file.read(BLOCK_SIZE)
    return sha1.hexdigest()

sha1_file = hash_file("d:\data.txt")
print(sha1_file)

'''
run:

76ce11dfae23755820c99076c068cae775f04dbc

'''

 



answered May 30, 2017 by avibootz
0 votes
import hashlib

BLOCK_SIZE = 1024

def hash_file(filename):
    sha1 = hashlib.sha1()
    with open(filename, 'rb') as file:
        buf = 0
        while buf != b'':
            buf = file.read(BLOCK_SIZE)
            sha1.update(buf)
    return sha1.hexdigest()

sha1_file = hash_file("d:\data.txt")
print(sha1_file)

'''
run:

76ce11dfae23755820c99076c068cae775f04dbc

'''

 



answered May 30, 2017 by avibootz

Related questions

...