19 references to SHA3_512
System.Security.Cryptography (19)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\MLDsa.cs (1)
2316hashAlgorithmIdentifier = HashAlgorithmNames.SHA3_512;
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
98case HashAlgorithmNames.SHA3_512:
src\runtime\src\libraries\Common\src\System\Security\Cryptography\SP800108HmacCounterKdf.cs (1)
558case HashAlgorithmNames.SHA3_512:
src\runtime\src\libraries\Common\src\System\Security\Cryptography\SP800108HmacCounterKdfImplementationCng.cs (1)
208case HashAlgorithmNames.SHA3_512:
System\Security\Cryptography\CryptographicOperations.cs (2)
1124case HashAlgorithmNames.SHA3_512: 1125if (!HashProviderDispenser.HashSupported(HashAlgorithmNames.SHA3_512))
System\Security\Cryptography\HashProviderDispenser.Windows.cs (3)
43case HashAlgorithmNames.SHA3_512: 67case HashAlgorithmNames.SHA3_512: 246else if (hashAlgorithmId == HashAlgorithmNames.SHA3_512)
System\Security\Cryptography\HMACCommon.cs (1)
90case HashAlgorithmNames.SHA3_512:
System\Security\Cryptography\HMACSHA3_512.cs (4)
20static string IHMACStatic.HashAlgorithmName => HashAlgorithmNames.SHA3_512; 70this.HashName = HashAlgorithmNames.SHA3_512; 71_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA3_512, key, BlockSize); 84public static bool IsSupported { get; } = HashProviderDispenser.MacSupported(HashAlgorithmNames.SHA3_512);
System\Security\Cryptography\IncrementalHash.cs (1)
462case HashAlgorithmNames.SHA3_512 when !SHA3_512.IsSupported:
System\Security\Cryptography\Pbkdf2Implementation.Windows.cs (1)
215case HashAlgorithmNames.SHA3_512:
System\Security\Cryptography\SHA3_512.cs (3)
24static string IHashStatic.HashAlgorithmName => HashAlgorithmNames.SHA3_512; 52public static bool IsSupported { get; } = HashProviderDispenser.HashSupported(HashAlgorithmNames.SHA3_512); 236_hashProvider = HashProviderDispenser.CreateHashProvider(HashAlgorithmNames.SHA3_512);