update method

  1. @override
Keccack update(
  1. List<int> data
)

Updates the hash computation with the given data.

This method updates the hash computation with the provided data bytes. It appends the data to the internal buffer and processes it to update the hash state.

If the hash has already been finished using the finish method, calling this method will result in an error.

Parameters:

  • data: The List

Returns this Hash object for method chaining.

Implementation

@override
Keccack update(List<int> data) {
  super.update(data);
  return this;
}