sm3sum function
Generates a SM3 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 sm3sum(
String input, [
Encoding? encoding,
bool uppercase = false,
]) {
return sm3.string(input, encoding).hex(uppercase);
}