cryptoHash static method

int cryptoHash(
  1. Uint8List out,
  2. Uint8List m
)

Implementation

static int cryptoHash(Uint8List out, Uint8List m) {
  return cryptoHashOff(out, m, 0, m.length);
}