hash method

Uint8List hash(
  1. Uint8List bytes
)
override

Hash bytes and returns the result as a Uint8List.

Implementation

Uint8List hash(Uint8List bytes) {
  var output = createHashBytesArray();
  hashTo(bytes, output);
  return output;
}