コード例 #1
0
        public static unsafe Byte[] GetHash(Byte[] buffer, int offset, int count)
        {
            sha256 sha = new sha256();

            sha.Process(buffer, offset, count);
            return(sha.GetHash());
        }
コード例 #2
0
        public static unsafe void GetHash(Byte[] buffer, int offset, int count, Byte[] hash, int hashoffset)
        {
            sha256 sha = new sha256();

            sha.Process(buffer, offset, count);
            sha.GetHash(hash, hashoffset);
        }