IStreamCipherProcessBytes(ReadOnlySpanByte, SpanByte) 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(
	ReadOnlySpan<byte> input,
	Span<byte> output
)

Parameters

input  ReadOnlySpanByte
The input span.
output  SpanByte
The output span.

Exceptions

OutputLengthExceptionIf the output span is too small.

See Also