コード例 #1
0
        public static byte[] Compute(byte[] aBlockHeader)
        {
            RandomHashFast hasher = new RandomHashFast();

            return(hasher.Hash(aBlockHeader));
        }
コード例 #2
0
 public static byte[] DoRandomHash(byte[] message) => RandomHashFast.Compute(message);