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.
Implementation
@override
Keccack reset() {
super.reset();
return this;
}