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

HashFinal() protected method

protected HashFinal ( ) : byte[]
return byte[]
		protected override byte[] HashFinal () 
		{
			if (m_disposed)
				throw new ObjectDisposedException ("MACTripleDES");
			State = 0;
			return mac.Final ();
		}
	}