IStreamCipherProcessBytes(Byte, Int32, Int32, Byte, Int32) Method

Process a block of bytes from input, putting the result into output.

Definition

Namespace: Org.BouncyCastle.Crypto
Assembly: BouncyCastle.Cryptography (in BouncyCastle.Cryptography.dll) Version: 2.3.0-beta.187+d6da5648ae
void ProcessBytes(
	byte[] input,
	int inOff,
	int length,
	byte[] output,
	int outOff
)

Parameters

input  Byte
The input byte array.
inOff  Int32
The offset into input where the data to be processed starts.
length  Int32
The number of bytes to be processed.
output  Byte
The output buffer the processed bytes go into.
outOff  Int32
The offset into output the processed data starts at.

Exceptions

DataLengthExceptionIf the input buffer is too small.
OutputLengthExceptionIf the output buffer is too small.

See Also