crypto_hash_sha256 static method

Uint8List crypto_hash_sha256(
  1. Uint8List out,
  2. Uint8List m
)

Implementation

static Uint8List crypto_hash_sha256(Uint8List out, Uint8List m) {
  return _crypto_hash_sha256(out, m, m.length);
}