AniDBmini.HashAlgorithms.Md4.HashFinal C# (CSharp) Method

HashFinal() protected method

protected HashFinal ( ) : byte[]
return byte[]
        protected override byte[] HashFinal()
        {
            byte[] tail = PadBuffer();
            HashCore(tail, 0, tail.Length);

            return new byte[] {
                (byte)(A), (byte)(A >> 8), (byte)(A >> 16), (byte)(A >> 24),
                (byte)(B), (byte)(B >> 8), (byte)(B >> 16), (byte)(B >> 24),
                (byte)(C), (byte)(C >> 8), (byte)(C >> 16), (byte)(C >> 24),
                (byte)(D), (byte)(D >> 8), (byte)(D >> 16), (byte)(D >> 24)
            };
        }