mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-19 01:43:42 +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()}")
|