update method

SHA224 update(
  1. List<int> bytes
)

Implementation

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