6 references to GetHashAlgorithmWithFipsFallback
mscorlib (6)
system\security\cryptography\hmacsha256.cs (2)
26
m_hash1 =
GetHashAlgorithmWithFipsFallback
(() => new SHA256Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA256CryptoServiceProvider"));
27
m_hash2 =
GetHashAlgorithmWithFipsFallback
(() => new SHA256Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA256CryptoServiceProvider"));
system\security\cryptography\hmacsha384.cs (2)
28
m_hash1 =
GetHashAlgorithmWithFipsFallback
(() => new SHA384Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA384CryptoServiceProvider"));
29
m_hash2 =
GetHashAlgorithmWithFipsFallback
(() => new SHA384Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA384CryptoServiceProvider"));
system\security\cryptography\hmacsha512.cs (2)
28
m_hash1 =
GetHashAlgorithmWithFipsFallback
(() => new SHA512Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA512CryptoServiceProvider"));
29
m_hash2 =
GetHashAlgorithmWithFipsFallback
(() => new SHA512Managed(), () => HashAlgorithm.Create("System.Security.Cryptography.SHA512CryptoServiceProvider"));