restoreState method

Keccack restoreState(
  1. List<int> savedState
)

Restores the hash computation state from a previously saved state.

Implementation

Keccack restoreState(List<int> savedState) {
  _state.setAll(0, savedState);
  _pos = savedState.length;
  _finished = false;
  return this;
}