ICipherGetUpdateOutputSize Method

Return the size of the output buffer required for a write() with the write() being passed inputLen bytes and just updating the cipher output.

Definition

Namespace: Org.BouncyCastle.Crypto
Assembly: BouncyCastle.Cryptography (in BouncyCastle.Cryptography.dll) Version: 2.3.0-beta.187+d6da5648ae
int GetUpdateOutputSize(
	int inputLen
)

Parameters

inputLen  Int32
The length of the expected input.

Return Value

Int32
The space required to accommodate a call to processBytes with inputLen bytes of input.

See Also