hash_bytes function

Uint8List hash_bytes(
  1. Uint8List value
)

@param {Buffer} value @returns {Buffer}

Implementation

// ignore: non_constant_identifier_names
Uint8List hash_bytes(Uint8List value) {
  return sha256Chunks([value.buffer]);
}