compute method

Uint8List compute(
  1. Uint8List data
)

Computes the MAC of data in one call (and rearms for the next message).

Implementation

Uint8List compute(Uint8List data) {
  reset();
  add(data);
  return finish();
}