2 writes to m_lastBlockBuffer
mscorlib (2)
system\security\cryptography\rijndaelmanagedtransform.cs (2)
146m_lastBlockBuffer = new int[m_Nb]; 182m_lastBlockBuffer = null;
10 references to m_lastBlockBuffer
mscorlib (10)
system\security\cryptography\rijndaelmanagedtransform.cs (10)
147Buffer.InternalBlockCopy(m_IV, 0, m_lastBlockBuffer, 0, m_blockSizeBytes); 180if (m_lastBlockBuffer != null) { 181Array.Clear(m_lastBlockBuffer, 0, m_lastBlockBuffer.Length); 372Buffer.InternalBlockCopy(m_IV, 0, m_lastBlockBuffer, 0, m_blockSizeBytes); 504work[i] ^= m_lastBlockBuffer[i]; 561fixed (int* pLastBlockBuffer = m_lastBlockBuffer) { 562Contract.Assert(m_blockSizeBytes <= m_lastBlockBuffer.Length * sizeof(int), "m_blockSizeBytes <= m_lastBlockBuffer.Length * sizeof(int)"); 674temp[i] ^= m_lastBlockBuffer[i]; 680m_lastBlockBuffer[i] = i3 << 24 | i2 << 16 | i1 << 8 | i0;