public static byte[] RIPEMD160(byte[] value)
 {
     return((byte[])CryptoLib.ripemd160((ByteString)value));
 }
예제 #2
0
 public static ByteString Hash160(ByteString value)
 {
     return(CryptoLib.ripemd160(CryptoLib.Sha256(value)));
 }
예제 #3
0
파일: CCMC.cs 프로젝트: neo-ngd/n3-asset
 public static byte[] Hash160(byte[] message)
 {
     return((byte[])CryptoLib.ripemd160(CryptoLib.Sha256((ByteString)message)));
 }