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