mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-09 18:25:47 +00:00
5 lines
68 B
Python
5 lines
68 B
Python
from hashlib import sha256
|
|
|
|
|
|
def hash(x): return sha256(x).digest()
|