Implemented interface member:
property
InputBlockSize
System.Security.Cryptography.ICryptoTransform.InputBlockSize
7 references to InputBlockSize
mscorlib (7)
system\security\cryptography\cryptoapitransform.cs (7)
205
if ((inputCount <= 0) || (inputCount %
InputBlockSize
!= 0) || (inputCount > inputBuffer.Length)) throw new ArgumentException(Environment.GetResourceString("Argument_InvalidValue"));
223
_depadBuffer = new byte[
InputBlockSize
];
225
int inputToProcess = inputCount -
InputBlockSize
;
226
Buffer.InternalBlockCopy(inputBuffer, inputOffset+inputToProcess, _depadBuffer, 0,
InputBlockSize
);
232
int inputToProcess = inputCount -
InputBlockSize
;
233
Buffer.InternalBlockCopy(inputBuffer, inputOffset+inputToProcess, _depadBuffer, 0,
InputBlockSize
);
256
if (inputCount%
InputBlockSize
!= 0)