Computes the SHA-256 hash of the given input input.
input
Returns a Digest representing the SHA-256 hash.
Digest sha256Hash(List<int> input) { return sha256.convert(input); }