System.Security.Cryptography.DESTransform.ECB C# (CSharp) Method

ECB() protected method

protected ECB ( byte input, byte output ) : void
input byte
output byte
return void
		protected override void ECB (byte[] input, byte[] output) 
		{
			Permutation (input, output, ipTab, false);
			ProcessBlock (output, byteBuff);
			Permutation (byteBuff, output, fpTab, true);
		}