processBytes method
Processes the input and returns the amount of bytes written.
Implementation
@override
int processBytes(
Uint8List inp, int inOff, int len, Uint8List out, int outOff) {
_ensureAadMacFinished();
if (_forEncryption) {
_ctr.processBytes(inp, inOff, len, out, outOff);
_cMac.update(out, outOff, len);
return len;
} else {
return _buf(inp, inOff, len, out, outOff);
}
}