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