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

ProcessByte() public method

public ProcessByte ( byte input ) : byte[]
input byte
return byte[]
		public override byte[] ProcessByte(
			byte input)
		{
			if (bufOff >= buffer.Length)
				throw new DataLengthException("attempt to process message to long for cipher");

			buffer[bufOff++] = input;
			return null;
		}