reset method
Resets the hash computation to its initial state.
Returns the current instance of the hash algorithm with the initial stat
Implementation
@override
SerializableHash reset() {
_initState();
_bufferLength = 0;
_bytesHashed = 0;
_finished = false;
return this;
}