17 references to Create
mscorlib (12)
system\security\cryptography\hashalgorithm.cs (1)
50return Create("System.Security.Cryptography.HashAlgorithm");
system\security\cryptography\hmac.cs (2)
110m_hash1 = HashAlgorithm.Create(m_hashName); 111m_hash2 = HashAlgorithm.Create(m_hashName);
system\security\cryptography\hmacsha256.cs (2)
26m_hash1 = GetHashAlgorithmWithFipsFallback(() => new SHA256Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA256CryptoServiceProvider")); 27m_hash2 = GetHashAlgorithmWithFipsFallback(() => new SHA256Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA256CryptoServiceProvider"));
system\security\cryptography\hmacsha384.cs (2)
28m_hash1 = GetHashAlgorithmWithFipsFallback(() => new SHA384Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA384CryptoServiceProvider")); 29m_hash2 = GetHashAlgorithmWithFipsFallback(() => new SHA384Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA384CryptoServiceProvider"));
system\security\cryptography\hmacsha512.cs (2)
28m_hash1 = GetHashAlgorithmWithFipsFallback(() => new SHA512Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA512CryptoServiceProvider")); 29m_hash2 = GetHashAlgorithmWithFipsFallback(() => new SHA512Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA512CryptoServiceProvider"));
system\security\policy\hash.cs (1)
336using (HashAlgorithm hash = HashAlgorithm.Create(hashType.FullName))
system\security\policy\hashmembershipcondition.cs (2)
49m_hashAlg = HashAlgorithm.Create(hashAlgorithm); 272m_hashAlg = HashAlgorithm.Create(elHashAlg);
System.Security (1)
system\security\cryptography\dataprotector.cs (1)
86using (HashAlgorithm sha256 = HashAlgorithm.Create("System.Security.Cryptography.Sha256Cng"))
System.Web (4)
Configuration\MachineKeySection.cs (2)
863return HashDataUsingNonKeyedAlgorithm(HashAlgorithm.Create(_CustomValidationName), 1104alg = HashAlgorithm.Create(_CustomValidationName);
Security\SQLMembershipProvider.cs (2)
1977return HashAlgorithm.Create(s_HashAlgorithm); 1986HashAlgorithm hashAlgo = HashAlgorithm.Create(temp);