Uint8List sha3256FromString(String str) { sha3Hash.reset(); final data = Uint8List.fromList(utf8.encode(str)); return sha3Hash.process(data); }