Files
consensus-specs/utils/phase0/hash_function.py
2019-03-18 14:14:26 -06:00

7 lines
129 B
Python

from hashlib import sha256
from eth_utils import keccak
# def hash(x): return sha256(x).digest()
def hash(x): return keccak(x)