update method

SHAKE update(
  1. List<int> data
)

Updates the hash computation with the given data.

Parameters:

  • data: The List<int> containing the data to be hashed.

Implementation

SHAKE update(List<int> data) {
  super.update(data);
  return this;
}