update method

Hmac update(
  1. List<int> msg
)

Implementation

Hmac update(List<int> msg) {
  hash.update(msg);
  return this;
}