23 references to SHA3_384
System.Security.Cryptography (23)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.EVP.DigestAlgs.cs (2)
139case HashAlgorithmNames.SHA3_384: 169case HashAlgorithmNames.SHA3_384:
src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
95case HashAlgorithmNames.SHA3_384:
src\libraries\Common\src\System\Security\Cryptography\SP800108HmacCounterKdf.cs (1)
569case HashAlgorithmNames.SHA3_384:
System\Security\Cryptography\CryptographicOperations.cs (2)
792case HashAlgorithmNames.SHA3_384: 793if (!HashProviderDispenser.HashSupported(HashAlgorithmNames.SHA3_384))
System\Security\Cryptography\HMACCommon.cs (1)
75case HashAlgorithmNames.SHA3_384:
System\Security\Cryptography\HMACSHA3_384.cs (8)
63this.HashName = HashAlgorithmNames.SHA3_384; 64_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA3_384, key, BlockSize); 77public static bool IsSupported { get; } = HashProviderDispenser.MacSupported(HashAlgorithmNames.SHA3_384); 190bytesWritten = HashProviderDispenser.OneShotHashProvider.MacData(HashAlgorithmNames.SHA3_384, key, source, destination); 227return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA3_384, key, source, destination); 250return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA3_384, HashSizeInBytes, key, source); 296return LiteHashProvider.HmacStreamAsync(HashAlgorithmNames.SHA3_384, key.Span, source, cancellationToken); 362HashAlgorithmNames.SHA3_384,
System\Security\Cryptography\IncrementalHash.cs (1)
382case HashAlgorithmNames.SHA3_384 when !SHA3_384.IsSupported:
System\Security\Cryptography\SHA3_384.cs (7)
45public static bool IsSupported { get; } = HashProviderDispenser.HashSupported(HashAlgorithmNames.SHA3_384); 145bytesWritten = HashProviderDispenser.OneShotHashProvider.HashData(HashAlgorithmNames.SHA3_384, source, destination); 184return LiteHashProvider.HashStream(HashAlgorithmNames.SHA3_384, source, destination); 209return LiteHashProvider.HashStream(HashAlgorithmNames.SHA3_384, HashSizeInBytes, source); 238return LiteHashProvider.HashStreamAsync(HashAlgorithmNames.SHA3_384, source, cancellationToken); 282HashAlgorithmNames.SHA3_384, 300_hashProvider = HashProviderDispenser.CreateHashProvider(HashAlgorithmNames.SHA3_384);