doFinal method

  1. @override
int doFinal(
  1. Uint8List out,
  2. int outOff
)

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;
}