hash method

  1. @MPI(name: "mesh.crypt.hash")
Future<Uint8List?> hash(
  1. Uint8List buf,
  2. Map<String, Uint8List> keys, {
  3. Context? ctx,
})
override

Hash compute the hash value.

Implementation

@MPI(name: "mesh.crypt.hash")
Future<Uint8List?> hash(Uint8List buf, Map<String, Uint8List> keys, {Context? ctx}) {
  throw UnimplementedError('hash() has not been implemented.');
}