reset method
Resets the hash computation to its initial state.
This method initializes the hash computation to its initial state, clearing any previously processed data. After calling this method, you can start a new hash computation.
Returns the current instance of the hash algorithm with the initial stat
Implementation
SHA3 reset() {
super.reset();
return this;
}