Org.BouncyCastle.Crypto.BufferedIesCipher.ProcessByte C# (CSharp) Method

ProcessByte() public method

public ProcessByte ( byte input ) : byte[]
input byte
return byte[]
		public override byte[] ProcessByte(
			byte input)
		{
			buffer.WriteByte(input);
			return null;
		}