8 writes to m_hash1
mscorlib (8)
system\security\cryptography\hmac.cs (1)
110m_hash1 = HashAlgorithm.Create(m_hashName);
system\security\cryptography\hmacmd5.cs (1)
24m_hash1 = new MD5CryptoServiceProvider();
system\security\cryptography\hmacripemd160.cs (1)
24m_hash1 = new RIPEMD160Managed();
system\security\cryptography\hmacsha1.cs (2)
29m_hash1 = new SHA1Managed(); 33m_hash1 = new SHA1CryptoServiceProvider();
system\security\cryptography\hmacsha256.cs (1)
26m_hash1 = GetHashAlgorithmWithFipsFallback(() => new SHA256Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA256CryptoServiceProvider"));
system\security\cryptography\hmacsha384.cs (1)
28m_hash1 = GetHashAlgorithmWithFipsFallback(() => new SHA384Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA384CryptoServiceProvider"));
system\security\cryptography\hmacsha512.cs (1)
28m_hash1 = GetHashAlgorithmWithFipsFallback(() => new SHA512Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA512CryptoServiceProvider"));
9 references to m_hash1
mscorlib (9)
system\security\cryptography\hmac.cs (9)
81KeyValue = m_hash1.ComputeHash(key); 129m_hash1.Initialize(); 136m_hash1.TransformBlock(m_inner, 0, m_inner.Length, m_inner, 0); 139m_hash1.TransformBlock(rgb, ib, cb, rgb, ib); 144m_hash1.TransformBlock(m_inner, 0, m_inner.Length, m_inner, 0); 148m_hash1.TransformFinalBlock(EmptyArray<Byte>.Value, 0, 0); 149byte[] hashValue1 = m_hash1.HashValue; 165if (m_hash1 != null) 166((IDisposable)m_hash1).Dispose();