3 instantiations of SHA512Managed
mscorlib (2)
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.IdentityModel (1)
System\IdentityModel\CryptoHelper.cs (1)
1199return new SHA512Managed();
1 reference to SHA512Managed
mscorlib (1)
system\security\cryptography\cryptoconfig.cs (1)
249object SHA512DefaultType = fipsOnly ? (object)SHA512CngType : (object)typeof(SHA512Managed);