lnbits-legend/tools/preimage.py
dni ⚡ 60839481ad
feat: add tool preimage generator (#2321)
`poetry run python tools/preimage.py`
2024-03-12 11:46:46 +01:00

9 lines
184 B
Python

import hashlib
import os
preimage = os.urandom(32)
preimage_hash = hashlib.sha256(preimage).hexdigest()
print(f"preimage hash: {preimage_hash}")
print(f"preimage: {preimage.hex()}")