File: print_hashes.py

package info (click to toggle)
python-psutil 5.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,512 kB
  • sloc: python: 18,651; ansic: 15,029; makefile: 441; javascript: 153
file content (35 lines) | stat: -rwxr-xr-x 791 bytes parent folder | download | duplicates (2)
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
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python3

# Copyright (c) 2009 Giampaolo Rodola'. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""
Prints files hashes.
See: https://pip.pypa.io/en/stable/reference/pip_install/#hash-checking-mode
"""

import hashlib
import os
import sys


def csum(file, kind):
    h = hashlib.new(kind)
    with open(file, "rb") as f:
        h.update(f.read())
        return h.hexdigest()


def main():
    dir = sys.argv[1]
    for name in sorted(os.listdir(dir)):
        file = os.path.join(dir, name)
        md5 = csum(file, "md5")
        sha256 = csum(file, "sha256")
        print("%s\nmd5: %s\nsha256: %s\n" % (
            os.path.basename(file), md5, sha256))


if __name__ == "__main__":
    main()