Computes a SHA-256 hash for the provided input.
input
String compute(String input) { final bytes = utf8.encode(input); return sha256.convert(bytes).toString(); }