mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-23 22:47:05 +01:00
8 lines
184 B
Python
8 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()}")
|