sha3_512sum function
Generates a SHA3-512 checksum in hexadecimal
Parameters:
inputis the string to hash- The
encodingis the encoding to use. Default isinput.codeUnits uppercasedefines if the hexadecimal output should be in uppercase
Implementation
String sha3_512sum(
String input, [
Encoding? encoding,
bool uppercase = false,
]) {
return sha3_512.string(input, encoding).hex(uppercase);
}