ComputeMD5 method
Implementation
@override
Uint8List ComputeMD5(
Uint8List data,
) => run(
() => RaylibDebugLabels.ComputeMD5(data),
() => .fromList(rl.Temp.UnsignedInt$.ToLEBytes(
rl.Core.ComputeMD5(
rl.Temp.Uint8$.Array(data).cast(),
data.length,
),
rl.Utils.md5Uint32HashLength,
)),
);