tests/sha256line.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 21 Feb 2024 02:12:58 +0100
branchstable
changeset 51392 e0fc40b95f05
parent 51361 fa4c4fa232d6
permissions -rwxr-xr-x
debugformat: fix formatting for compression level `bytes(<int>)` gives a very different result as `str(<int>)` and the display of `hg debugformat` have been broken for a while as a result.

#!/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())