update method

HMAC update(
  1. List<int> data
)

Implementation

HMAC update(List<int> data) {
  this.inner.insertAll(this.inner.length, data);
  return this;
}