1 write to depadBuffer
System.IdentityModel (1)
System\IdentityModel\RijndaelCryptoServiceProvider.cs (1)
199this.depadBuffer = new byte[this.blockSize];
9 references to depadBuffer
System.IdentityModel (9)
System\IdentityModel\RijndaelCryptoServiceProvider.cs (9)
197if (this.depadBuffer == null) 202Buffer.BlockCopy(inputBuffer, inputOffset + inputToProcess, this.depadBuffer, 0, this.blockSize); 208int dwCount = DecryptData(this.depadBuffer, 0, this.depadBuffer.Length, outputBuffer, outputOffset, false); 211Buffer.BlockCopy(inputBuffer, inputOffset + inputToProcess, this.depadBuffer, 0, this.blockSize); 252if (this.depadBuffer == null) 260byte[] outputBuffer = new byte[this.depadBuffer.Length + inputCount]; 262int dwCount = DecryptData(this.depadBuffer, 0, this.depadBuffer.Length, outputBuffer, 0, false);