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