mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-20 07:29:02 +00:00
6 lines
72 B
Python
6 lines
72 B
Python
from hashlib import sha256
|
|
|
|
|
|
def hash(x):
|
|
return sha256(x).digest()
|