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