chia-blockchain/chia/util/hash.py

11 lines
213 B
Python

import blspy
from chia.types.blockchain_format.sized_bytes import bytes32
def std_hash(b) -> bytes32:
"""
The standard hash used in many places.
"""
return bytes32(blspy.Util.hash256(bytes(b)))