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