Unverified Commit f0312565 authored by Vladimir Mandic's avatar Vladimir Mandic Committed by GitHub
Browse files

increase block size

parent ebfdd7ba
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -34,9 +34,10 @@ def cache(subsection):

def calculate_sha256(filename):
    hash_sha256 = hashlib.sha256()
    blksize = 1024 * 1024

    with open(filename, "rb") as f:
        for chunk in iter(lambda: f.read(4096), b""):
        for chunk in iter(lambda: f.read(blksize), b""):
            hash_sha256.update(chunk)

    return hash_sha256.hexdigest()