8 writes to m_hash2
mscorlib (8)
system\security\cryptography\hmac.cs (1)
111
m_hash2
= HashAlgorithm.Create(m_hashName);
system\security\cryptography\hmacmd5.cs (1)
25
m_hash2
= new MD5CryptoServiceProvider();
system\security\cryptography\hmacripemd160.cs (1)
25
m_hash2
= new RIPEMD160Managed();
system\security\cryptography\hmacsha1.cs (2)
30
m_hash2
= new SHA1Managed();
34
m_hash2
= new SHA1CryptoServiceProvider();
system\security\cryptography\hmacsha256.cs (1)
27
m_hash2
= GetHashAlgorithmWithFipsFallback(() => new SHA256Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA256CryptoServiceProvider"));
system\security\cryptography\hmacsha384.cs (1)
29
m_hash2
= GetHashAlgorithmWithFipsFallback(() => new SHA384Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA384CryptoServiceProvider"));
system\security\cryptography\hmacsha512.cs (1)
29
m_hash2
= GetHashAlgorithmWithFipsFallback(() => new SHA512Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA512CryptoServiceProvider"));
7 references to m_hash2
mscorlib (7)
system\security\cryptography\hmac.cs (7)
130
m_hash2
.Initialize();
151
m_hash2
.TransformBlock(m_outer, 0, m_outer.Length, m_outer, 0);
153
m_hash2
.TransformBlock(hashValue1, 0, hashValue1.Length, hashValue1, 0);
155
m_hash2
.TransformFinalBlock(EmptyArray<Byte>.Value, 0, 0);
156
return
m_hash2
.HashValue;
167
if (
m_hash2
!= null)
168
((IDisposable)
m_hash2
).Dispose();