TLSharp.Core.MTProto.Crypto.Crc32.HashFinal C# (CSharp) Method

HashFinal() protected method

Возвращает хеш в BigEndian
protected HashFinal ( ) : byte[]
return byte[]
        protected override byte[] HashFinal()
        {
            byte[] hashBuffer = UInt32ToBigEndianBytes(~hash);
            this.HashValue = hashBuffer;
            return hashBuffer;
        }