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