Org.BouncyCastle.Crypto.StreamBlockCipher.ReturnByte C# (CSharp) Method

ReturnByte() public method

public ReturnByte ( byte input ) : byte
input byte
return byte
		public byte ReturnByte(
			byte input)
		{
			oneByte[0] = input;

			cipher.ProcessBlock(oneByte, 0, oneByte, 0);

			return oneByte[0];
		}