Calculate the RIPEMD-160 hash of the SHA-256 hash of the input data
static List<int> hash160(List<int> data) { final List<int> tmp = SHA256.hash(data); return RIPEMD160.hash(tmp); }