/// <summary> /// Returns a byte array of the hash value. /// </summary> public byte[] Final() { hashInt = (ushort)~hashInt; BigEndianBitConverter.IsLittleEndian = BitConverter.IsLittleEndian; return(BigEndianBitConverter.GetBytes(hashInt)); }