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