keccak256sum function
Generates a Keccak-256 checksum in hexadecimal
Parameters:
input
is the string to hash- The
encoding
is the encoding to use. Default isinput.codeUnits
uppercase
defines if the hexadecimal output should be in uppercase
Implementation
String keccak256sum(
String input, [
Encoding? encoding,
bool uppercase = false,
]) {
return keccak256.string(input, encoding).hex(uppercase);
}