eth2.0-specs/test_libs/pyspec/eth2spec/utils/hash_function.py

6 lines
72 B
Python
Raw Normal View History

2019-03-26 13:17:08 +00:00
from hashlib import sha256
2019-03-18 18:51:52 +00:00
def hash(x):
return sha256(x).digest()