tests/sha256line.py
author Raphaël Gomès <rgomes@octobus.net>
Tue, 23 Jul 2024 12:12:03 +0200
changeset 51712 e153995011b7
parent 51361 fa4c4fa232d6
permissions -rwxr-xr-x
heptapod-ci: move version prints closer to the start This makes debugging a lot easier if anything is to go wrong, and shows output earlier.

#!/usr/bin/env python3
#
# A tool to help producing large and poorly compressible files
#
# Usage:
#   $TESTDIR/seq.py 1000 | $TESTDIR/sha256line.py > my-file.txt


import hashlib
import sys


for line in sys.stdin:
    print(hashlib.sha256(line.encode('utf8')).hexdigest())