Computes the RIPEMD-160 hash of the provided data.
static List<int> hash(List<int> data) { final h = RIPEMD160(); h.update(data); final digest = h.digest(); h.clean(); return digest; }