3 writes to _depadBuffer
mscorlib (3)
system\security\cryptography\cryptoapitransform.cs (3)
144_depadBuffer = null; 190_depadBuffer = null; 223_depadBuffer = new byte[InputBlockSize];
13 references to _depadBuffer
mscorlib (13)
system\security\cryptography\cryptoapitransform.cs (13)
142if (_depadBuffer != null) { 143Array.Clear(_depadBuffer, 0, _depadBuffer.Length); 222if (_depadBuffer == null) { 226Buffer.InternalBlockCopy(inputBuffer, inputOffset+inputToProcess, _depadBuffer, 0, InputBlockSize); 230int r = Utils._DecryptData(_safeKeyHandle, _depadBuffer, 0, _depadBuffer.Length, ref outputBuffer, outputOffset, PaddingValue, false); 233Buffer.InternalBlockCopy(inputBuffer, inputOffset+inputToProcess, _depadBuffer, 0, InputBlockSize); 259if (_depadBuffer == null) { 265byte[] temp = new byte[_depadBuffer.Length + inputCount]; 266Buffer.InternalBlockCopy(_depadBuffer, 0, temp, 0, _depadBuffer.Length); 267Buffer.InternalBlockCopy(inputBuffer, inputOffset, temp, _depadBuffer.Length, inputCount);