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

MD5() public method

public MD5 ( ) : System
return System
        public MD5()
        {
            fooBuffer = new byte[BLOCK_SIZE_BYTES * 4096];
            hash = new byte[16];
            _ProcessingBuffer = new byte[BLOCK_SIZE_BYTES];

            Initialize();
        }