2 writes to m_hmac
mscorlib (2)
system\security\cryptography\rfc2898derivebytes.cs (2)
77m_hmac = hmac; 113m_hmac = hmac;
11 references to m_hmac
mscorlib (11)
system\security\cryptography\rfc2898derivebytes.cs (11)
202if (m_hmac != null) { 203((IDisposable)m_hmac).Dispose(); 229m_hmac.TransformBlock(m_salt, 0, m_salt.Length, null, 0); 230m_hmac.TransformBlock(INT_block, 0, INT_block.Length, null, 0); 231m_hmac.TransformFinalBlock(EmptyArray<Byte>.Value, 0, 0); 232byte[] temp = m_hmac.HashValue; 233m_hmac.Initialize(); 237m_hmac.TransformBlock(temp, 0, temp.Length, null, 0); 238m_hmac.TransformFinalBlock(EmptyArray<Byte>.Value, 0, 0); 239temp = m_hmac.HashValue; 243m_hmac.Initialize();