Compute the integrity hash of raw bytes.
String computeIntegrityFromBytes(List<int> bytes) { final digest = sha256.convert(bytes); return 'sha256:${digest.toString()}'; }