digest method

  1. @override
List<int> digest()
override

Computes the MD4 hash digest and returns it as a List<int>.

Implementation

@override
/// Computes the MD4 hash digest and returns it as a `List<int>`.
List<int> digest() {
  final out = List<int>.filled(getDigestLength, 0);
  finish(out);
  return out;
}