sha256Hash160 function

Uint8List sha256Hash160(
  1. Uint8List input
)

Implementation

Uint8List sha256Hash160(Uint8List input) {
  return RIPEMD160Digest().process(SHA256Digest().process(input));
}