ripemd128sum function

String ripemd128sum(
  1. String input, [
  2. Encoding? encoding,
  3. bool uppercase = false
])

Generates a RIPEMD-128 hash in hexadecimal

Parameters:

  • input is the message string
  • encoding specifies the character encoding. Default is utf8.
  • uppercase flag indicates whether the output should be in uppercase.

Implementation

String ripemd128sum(
  String input, [
  Encoding? encoding,
  bool uppercase = false,
]) {
  return ripemd128.string(input, encoding).hex(uppercase);
}