7 writes to m_hashName
mscorlib (7)
system\security\cryptography\hmac.cs (1)
108m_hashName = value;
system\security\cryptography\hmacmd5.cs (1)
23m_hashName = "MD5";
system\security\cryptography\hmacripemd160.cs (1)
23m_hashName = "RIPEMD160";
system\security\cryptography\hmacsha1.cs (1)
25m_hashName = "SHA1";
system\security\cryptography\hmacsha256.cs (1)
23m_hashName = "SHA256";
system\security\cryptography\hmacsha384.cs (1)
27m_hashName = "SHA384";
system\security\cryptography\hmacsha512.cs (1)
27m_hashName = "SHA512";
3 references to m_hashName
mscorlib (3)
system\security\cryptography\hmac.cs (3)
103get { return m_hashName; } 110m_hash1 = HashAlgorithm.Create(m_hashName); 111m_hash2 = HashAlgorithm.Create(m_hashName);