hash160 static method

List<int> hash160(
  1. List<int> data
)

Calculate the RIPEMD-160 hash of the SHA-256 hash of the input data

Implementation

static List<int> hash160(List<int> data) {
  final List<int> tmp = SHA256.hash(data);
  return RIPEMD160.hash(tmp);
}