23 references to SHA512
System.Security.Cryptography (23)
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\RsaPaddingProcessor.cs (1)
89case HashAlgorithmNames.SHA512:
src\libraries\Common\src\System\Security\Cryptography\SP800108HmacCounterKdf.cs (1)
560case HashAlgorithmNames.SHA512:
System\Security\Cryptography\CryptographicOperations.cs (1)
781case HashAlgorithmNames.SHA512:
System\Security\Cryptography\HashAlgorithmNames.cs (3)
40return HashAlgorithmNames.SHA512; 63if (hashAlgorithmName.Equals(SHA512, StringComparison.OrdinalIgnoreCase)) 65return SHA512;
System\Security\Cryptography\HMACCommon.cs (1)
68case HashAlgorithmNames.SHA512:
System\Security\Cryptography\HMACSHA512.cs (7)
39this.HashName = HashAlgorithmNames.SHA512; 40_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA512, key, BlockSize); 166bytesWritten = HashProviderDispenser.OneShotHashProvider.MacData(HashAlgorithmNames.SHA512, key, source, destination); 202return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA512, key, source, destination); 224return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA512, HashSizeInBytes, key, source); 269return LiteHashProvider.HmacStreamAsync(HashAlgorithmNames.SHA512, key.Span, source, cancellationToken); 334HashAlgorithmNames.SHA512,
System\Security\Cryptography\SHA512.cs (6)
110bytesWritten = HashProviderDispenser.OneShotHashProvider.HashData(HashAlgorithmNames.SHA512, source, destination); 145return LiteHashProvider.HashStream(HashAlgorithmNames.SHA512, source, destination); 166return LiteHashProvider.HashStream(HashAlgorithmNames.SHA512, HashSizeInBytes, source); 191return LiteHashProvider.HashStreamAsync(HashAlgorithmNames.SHA512, source, cancellationToken); 231HashAlgorithmNames.SHA512, 243_hashProvider = HashProviderDispenser.CreateHashProvider(HashAlgorithmNames.SHA512);
System\Security\Cryptography\SHA512Managed.cs (1)
18_hashProvider = HashProviderDispenser.CreateHashProvider(HashAlgorithmNames.SHA512);