public static byte[] RIPEMD160(byte[] value) { return((byte[])CryptoLib.ripemd160((ByteString)value)); }
public static ByteString Hash160(ByteString value) { return(CryptoLib.ripemd160(CryptoLib.Sha256(value))); }
public static byte[] Hash160(byte[] message) { return((byte[])CryptoLib.ripemd160(CryptoLib.Sha256((ByteString)message))); }