ComputeMD5 method

  1. @override
Uint8List ComputeMD5(
  1. Uint8List data
)
override

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,
  )),
);