5 instantiations of Hash
mscorlib (5)
system\security\policy\assemblyevidencefactory.cs (1)
121
return new
Hash
(m_targetAssembly);
system\security\policy\hash.cs (4)
141
return new
Hash
(typeof(SHA1), sha1);
154
return new
Hash
(typeof(SHA256), sha256);
167
return new
Hash
(typeof(MD5), md5);
175
return new
Hash
(this);
10 references to Hash
mscorlib (10)
system\security\policy\assemblyevidencefactory.cs (2)
78
else if (evidenceType == typeof(
Hash
))
113
private
Hash
GenerateHashEvidence()
system\security\policy\evidence.cs (2)
246
typeof(
Hash
),
1663
expensiveEvidence.Add(typeof(
Hash
));
system\security\policy\hash.cs (4)
106
private Hash(
Hash
hash)
135
public static
Hash
CreateSHA1(byte[] sha1)
148
public static
Hash
CreateSHA256(byte[] sha256)
161
public static
Hash
CreateMD5(byte[] md5)
system\security\policy\hashmembershipcondition.cs (2)
122
Hash
hash = evidence.GetHostEvidence<
Hash
>();