System\IdentityModel\RijndaelCryptoServiceProvider.cs (8)
191return DecryptData(inputBuffer, inputOffset, inputCount, outputBuffer, outputOffset, false);
203return ((inputToProcess <= 0) ? 0 : DecryptData(inputBuffer, inputOffset, inputToProcess, outputBuffer, outputOffset, false));
208int dwCount = DecryptData(this.depadBuffer, 0, this.depadBuffer.Length, outputBuffer, outputOffset, false);
212return dwCount + ((inputToProcess <= 0) ? 0 : DecryptData(inputBuffer, inputOffset, inputToProcess, outputBuffer, outputOffset, false));
245int dwCount = DecryptData(inputBuffer, inputOffset, inputCount, outputBuffer, 0, true);
255int dwCount = DecryptData(inputBuffer, inputOffset, inputCount, outputBuffer, 0, true);
262int dwCount = DecryptData(this.depadBuffer, 0, this.depadBuffer.Length, outputBuffer, 0, false);
263dwCount += DecryptData(inputBuffer, inputOffset, inputCount, outputBuffer, dwCount, true);