hash abstract method

Future<Uint8List> hash(
  1. Uint8List input
)
override

Computes hash of input bytes.

input should be the data to hash as a Uint8List. Returns the hash output as a Uint8List.

Implementation

Future<Uint8List> hash(Uint8List input);