2 types derived from MD5
mscorlib (1)
system\security\cryptography\md5cryptoserviceprovider.cs (1)
16public sealed class MD5CryptoServiceProvider : MD5 {
System.Core (1)
System\Security\Cryptography\MD5Cng.cs (1)
15public sealed class MD5Cng : MD5 {
14 references to MD5
mscorlib (11)
system\security\cryptography\md5.cs (3)
25new static public MD5 Create() { 29new static public MD5 Create(String algName) { 30return (MD5) CryptoConfig.CreateFromName(algName);
system\security\policy\hash.cs (8)
68m_hashes[typeof(MD5)] = md5; 167return new Hash(typeof(MD5), md5); 203if (m_hashes.TryGetValue(typeof(MD5), out md5Hash)) 274if (!m_hashes.TryGetValue(typeof(MD5), out md5)) 276md5 = GenerateHash(GetDefaultHashImplementationOrFallback(typeof(MD5), typeof(MD5))); 368GetHashIndexType(typeof(MD5)) 410if (hashAlgorithm.IsAssignableFrom(typeof(MD5)))
System.Web (1)
Security\Cryptography\CryptoAlgorithms.cs (1)
70internal static MD5 CreateMD5() {
System.Workflow.Runtime (2)
Tracking.cs (2)
1858MD5 md5 = new MD5CryptoServiceProvider(); 1884MD5 md5 = new MD5CryptoServiceProvider();