digest static method

Uint8List digest(
  1. Uint8List data
)

Get the RipeMD-160 digest of data.

data is the input binary data to hash.

Returns the 20-byte digest value as Uint8List.

Implementation

static Uint8List digest(Uint8List data) {
  return digester!.digest(data);
}