doFinal method
Store the digest of previously given data in buffer out
starting at
offset outOff
. This method returns the size of the digest.
Implementation
@override
int doFinal(Uint8List out, int outOff) {
squeeze(out, outOff, fixedOutputLength);
reset();
return digestSize;
}