clean method

  1. @override
void clean()
override

Clears internal state and buffers, resetting the MD4 hash object to its initial state.

Implementation

@override
void clean() {
  BinaryOps.zero(_state);
  BinaryOps.zero(_currentChunk);
  _buffer.clear();
  reset();
}