Spaces:
Sleeping
Sleeping
File size: 159 Bytes
7131bbe | 1 2 3 4 5 6 7 8 9 10 11 | """Checksum helpers."""
from __future__ import annotations
import hashlib
def sha256_hex(data: bytes) -> str:
return hashlib.sha256(data).hexdigest()
|