hash static method

List<int> hash(
  1. List<int> value
)
override

Creates a SHA256 hash from the given value byte array

Implementation

static List<int> hash(List<int> value) {
  return sha256.convert(value).bytes;
}