23 references to SHA384
System.Security.Cryptography (23)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.EVP.DigestAlgs.cs (2)
134case HashAlgorithmNames.SHA384: return EvpSha384(); 163case HashAlgorithmNames.SHA384:
src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
86case HashAlgorithmNames.SHA384:
src\libraries\Common\src\System\Security\Cryptography\SP800108HmacCounterKdf.cs (1)
559case HashAlgorithmNames.SHA384:
System\Security\Cryptography\CryptographicOperations.cs (1)
783case HashAlgorithmNames.SHA384:
System\Security\Cryptography\HashAlgorithmNames.cs (3)
38return HashAlgorithmNames.SHA384; 58if (hashAlgorithmName.Equals(SHA384, StringComparison.OrdinalIgnoreCase)) 60return SHA384;
System\Security\Cryptography\HMACCommon.cs (1)
65case HashAlgorithmNames.SHA384:
System\Security\Cryptography\HMACSHA384.cs (7)
39this.HashName = HashAlgorithmNames.SHA384; 40_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA384, key, BlockSize); 169bytesWritten = HashProviderDispenser.OneShotHashProvider.MacData(HashAlgorithmNames.SHA384, key, source, destination); 205return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA384, key, source, destination); 227return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA384, HashSizeInBytes, key, source); 272return LiteHashProvider.HmacStreamAsync(HashAlgorithmNames.SHA384, key.Span, source, cancellationToken); 337HashAlgorithmNames.SHA384,
System\Security\Cryptography\SHA384.cs (6)
110bytesWritten = HashProviderDispenser.OneShotHashProvider.HashData(HashAlgorithmNames.SHA384, source, destination); 145return LiteHashProvider.HashStream(HashAlgorithmNames.SHA384, source, destination); 166return LiteHashProvider.HashStream(HashAlgorithmNames.SHA384, HashSizeInBytes, source); 191return LiteHashProvider.HashStreamAsync(HashAlgorithmNames.SHA384, source, cancellationToken); 231HashAlgorithmNames.SHA384, 243_hashProvider = HashProviderDispenser.CreateHashProvider(HashAlgorithmNames.SHA384);
System\Security\Cryptography\SHA384Managed.cs (1)
18_hashProvider = HashProviderDispenser.CreateHashProvider(HashAlgorithmNames.SHA384);