reset method

  1. @override
Hash reset()
override

Resets the hash computation to its initial state.

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

Implementation

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