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