AdvUtils.Security.Cryptography.MD5.Compute64BitHash C# (CSharp) Method

Compute64BitHash() public method

public Compute64BitHash ( byte buffer ) : long
buffer byte
return long
        public long Compute64BitHash(byte[] buffer)
        {
            HashCore(buffer, 0, buffer.Length);

            ProcessFinalBlock(_ProcessingBuffer, 0, _ProcessingBufferCount);
            long longRst = (((long)_state1 << 32) | (long)_state0);
            this.Initialize();

            return longRst;
        }