crypto_hash static method

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

Implementation

static int crypto_hash(Uint8List out, Uint8List m) {
  return crypto_hash_off(out, m, 0, m != null ? m.length : 0);
}