ComputeSHA256 method
Compute SHA256 hash code
Implementation
Uint8List ComputeSHA256(
Uint8List data,
) => run(
() => _debugLabels.ComputeSHA256(data),
() => .fromList($.UnsignedInt$.ToBEBytes(
_flat.ComputeSHA256(
$.Uint8$.Array(data),
data.length,
),
rl.Utils.sha256Uint32HashLength,
)),
);