padMAC method

void padMAC(
  1. int count
)

Implementation

void padMAC(int count) {
  var partial = (count & 4294967295) & (MAC_SIZE - 1);
  if (0 != partial) {
    poly1305.update(ZEROES, 0, MAC_SIZE - partial);
  }
}