public static byte[] RIPEMD160(byte[] value)
 {
     return((byte[])CryptoLib.ripemd160((ByteString)value));
 }
Exemplo n.º 2
0
 public static ByteString Hash160(ByteString value)
 {
     return(CryptoLib.ripemd160(CryptoLib.Sha256(value)));
 }
Exemplo n.º 3
0
 public static byte[] Hash160(byte[] message)
 {
     return((byte[])CryptoLib.ripemd160(CryptoLib.Sha256((ByteString)message)));
 }