Implemented interface member:
property
InputBlockSize
System.Security.Cryptography.ICryptoTransform.InputBlockSize
10 references to InputBlockSize
mscorlib (10)
system\security\cryptography\rijndaelmanagedtransform.cs (10)
245
if (inputCount <= 0 || (inputCount %
InputBlockSize
!= 0) || (inputCount > inputBuffer.Length)) throw new ArgumentException(Environment.GetResourceString("Argument_InvalidValue"));
273
m_depadBuffer = new byte[
InputBlockSize
];
275
int inputToProcess = inputCount -
InputBlockSize
;
276
Buffer.InternalBlockCopy(inputBuffer, inputOffset+inputToProcess, m_depadBuffer, 0,
InputBlockSize
);
293
int inputToProcess = inputCount -
InputBlockSize
;
294
Buffer.InternalBlockCopy(inputBuffer, inputOffset+inputToProcess, m_depadBuffer, 0,
InputBlockSize
);
331
if (inputCount%
InputBlockSize
!= 0)
716
if (padSize > outputBuffer.Length || padSize >
InputBlockSize
|| padSize <= 0)
729
if (padSize > outputBuffer.Length || padSize >
InputBlockSize
|| padSize <= 0)
742
if (padSize > outputBuffer.Length || padSize >
InputBlockSize
|| padSize <= 0)