File size: 688 Bytes
67a9b5d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import hashlib


def calc_hash(content, hash_object=None):
    hash_object = hash_object or hashlib.md5()
    if isinstance(hash_object, str):
        hash_object = hashlib.new(hash_object)
    hash_object.update(content)
    return hash_object.hexdigest()


def calc_file_hash(filename, hash_object=None, chunk_size=1024 * 1024):
    hash_object = hash_object or hashlib.md5()
    if isinstance(hash_object, str):
        hash_object = hashlib.new(hash_object)
    
    with open(filename, "rb") as f:
        while True:
            chunk = f.read(chunk_size)
            if not chunk:
                break
            hash_object.update(chunk)
    return hash_object.hexdigest()