import hashlib def sha256_file(data: bytes) -> str: return hashlib.sha256(data).hexdigest()