mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-02-03 15:45:07 -05:00
6 lines
72 B
Python
6 lines
72 B
Python
from hashlib import sha256
|
|
|
|
|
|
def hash(x):
|
|
return sha256(x).digest()
|