update method

SHA256 update(
  1. List<int> bytes
)

Implementation

SHA256 update(List<int> bytes) {
  this.sha.add(bytes);
  return this;
}