mirror of
https://github.com/lnbits/lnbits.git
synced 2025-03-17 13:21:48 +01:00
9 lines
184 B
Python
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()}")
|