Double hash the data: RIPEMD160(SHA256(data))
Uint8List hash160(Uint8List data) { return ripemd160digest.process(sha256digest.process(data)); }