chia-blockchain/chia/util/hash.py

11 lines
213 B
Python
Raw Normal View History

2020-02-07 22:55:01 +03:00
import blspy
from chia.types.blockchain_format.sized_bytes import bytes32
2020-02-07 22:55:01 +03:00
def std_hash(b) -> bytes32:
"""
The standard hash used in many places.
"""
return bytes32(blspy.Util.hash256(bytes(b)))