ADJCJH's picture
Deploy ProofFrame public mock demo
7131bbe verified
Raw
History Blame Contribute Delete
159 Bytes
"""Checksum helpers."""
from __future__ import annotations
import hashlib
def sha256_hex(data: bytes) -> str:
return hashlib.sha256(data).hexdigest()