17 references to SHA512
System.Security.Cryptography (17)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.EVP.DigestAlgs.cs (2)
135case HashAlgorithmNames.SHA512: return EvpSha512(); 164case HashAlgorithmNames.SHA512:
src\libraries\Common\src\System\Security\Cryptography\MLDsa.cs (1)
2347hashAlgorithmIdentifier = HashAlgorithmNames.SHA512;
src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
89case HashAlgorithmNames.SHA512:
src\libraries\Common\src\System\Security\Cryptography\SP800108HmacCounterKdf.cs (1)
543case HashAlgorithmNames.SHA512:
System\Security\Cryptography\CryptographicOperations.cs (1)
1068case HashAlgorithmNames.SHA512:
System\Security\Cryptography\HashAlgorithmNames.cs (3)
40return HashAlgorithmNames.SHA512; 63if (hashAlgorithmName.Equals(SHA512, StringComparison.OrdinalIgnoreCase)) 65return SHA512;
System\Security\Cryptography\Helpers.cs (1)
426case HashAlgorithmNames.SHA512:
System\Security\Cryptography\HMACCommon.cs (1)
79case HashAlgorithmNames.SHA512:
System\Security\Cryptography\HMACSHA512.cs (3)
23static string IHMACStatic.HashAlgorithmName => HashAlgorithmNames.SHA512; 46this.HashName = HashAlgorithmNames.SHA512; 47_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA512, key, BlockSize);
System\Security\Cryptography\SHA512.cs (2)
24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA512; 192_hashProvider = HashProviderDispenser.CreateHashProvider(HashAlgorithmNames.SHA512);
System\Security\Cryptography\SHA512Managed.cs (1)
18_hashProvider = HashProviderDispenser.CreateHashProvider(HashAlgorithmNames.SHA512);