finish method

  1. @override
Hash finish(
  1. List<int> out
)
override

Finalizes the hash computation and stores the hash state in the provided out.

Parameters:

  • out: The List<int> in which the hash digest is stored.

Implementation

@override
Hash finish(List<int> out) {
  stream(out);
  return this;
}