Mercurial > hg
view tests/sha256line.py @ 51692:771598067be2
rustfmt: format the codebase with nightly-2024-07-16
The CI has moved to a newer nightly, which slightly changes how it wraps
comments (which is the very option we use nightly for).
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Thu, 18 Jul 2024 12:38:26 +0200 |
parents | fa4c4fa232d6 |
children |
line wrap: on
line source
#!/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())