public static byte[] Compute(byte[] aBlockHeader) { RandomHashFast hasher = new RandomHashFast(); return(hasher.Hash(aBlockHeader)); }
public static byte[] DoRandomHash(byte[] message) => RandomHashFast.Compute(message);