update method

SHA3 update(
  1. List<int> data
)

Updates the hash computation with the given data.

Parameters:

  • data: Containing the data to be hashed.

Implementation

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