System.Security.Cryptography.MACTripleDES.HashCore C# (CSharp) Method

HashCore() protected method

protected HashCore ( byte rgbData, int ibStart, int cbSize ) : void
rgbData byte
ibStart int
cbSize int
return void
		protected override void HashCore (byte[] rgbData, int ibStart, int cbSize) 
		{
			if (m_disposed)
				throw new ObjectDisposedException ("MACTripleDES");
			if (State == 0) {
				Initialize ();
				State = 1;
			}
			mac.Core (rgbData, ibStart, cbSize);
		}