5 writes to m_hashes
mscorlib (5)
system\security\policy\hash.cs (5)
57
m_hashes
= hashes;
63
m_hashes
= new Dictionary<Type, byte[]>();
96
m_hashes
= new Dictionary<Type, byte[]>();
112
m_hashes
= new Dictionary<Type, byte[]>(hash.m_hashes);
123
m_hashes
= new Dictionary<Type, byte[]>();
15 references to m_hashes
mscorlib (15)
system\security\policy\hash.cs (15)
68
m_hashes
[typeof(MD5)] = md5;
74
m_hashes
[typeof(SHA1)] = sha1;
112
m_hashes = new Dictionary<Type, byte[]>(hash.
m_hashes
);
128
m_hashes
[hashType] = hashValue;
203
if (
m_hashes
.TryGetValue(typeof(MD5), out md5Hash))
207
if (
m_hashes
.TryGetValue(typeof(SHA1), out sha1Hash))
225
info.AddValue("Hashes",
m_hashes
);
236
if (!
m_hashes
.TryGetValue(typeof(SHA1), out sha1))
255
if (!
m_hashes
.TryGetValue(typeof(SHA256), out sha256))
274
if (!
m_hashes
.TryGetValue(typeof(MD5), out md5))
313
if (!
m_hashes
.TryGetValue(indexType, out hashValue))
322
m_hashes
[indexType] = hashValue;
376
if (!
m_hashes
.ContainsKey(defaultHashType))
378
m_hashes
[defaultHashType] = GenerateHash(hashImplementationType, assemblyBytes);
503
foreach (KeyValuePair<Type, byte[]> hashValue in
m_hashes
)