Hashes a given message.
Future<String> hash(String message) async { final hash = await _hasher.hash(utf8.encode(message)); return base64Encode(hash.bytes); }