reset method

  1. @override
RIPEMD128 reset()
inherited

Resets the hash computation to its initial state.

Returns the current instance of the hash algorithm with the initial stat

Implementation

@override
T reset() {
  _init();
  _finished = false;
  _lengthInBytes = 0;
  return this as T;
}