23 references to SHA3_256
System.Security.Cryptography (23)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.EVP.DigestAlgs.cs (2)
136case HashAlgorithmNames.SHA3_256: 167case HashAlgorithmNames.SHA3_256:
src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
92case HashAlgorithmNames.SHA3_256:
src\libraries\Common\src\System\Security\Cryptography\SP800108HmacCounterKdf.cs (1)
563case HashAlgorithmNames.SHA3_256:
System\Security\Cryptography\CryptographicOperations.cs (2)
785case HashAlgorithmNames.SHA3_256: 786if (!HashProviderDispenser.HashSupported(HashAlgorithmNames.SHA3_256))
System\Security\Cryptography\HMACCommon.cs (1)
71case HashAlgorithmNames.SHA3_256:
System\Security\Cryptography\HMACSHA3_256.cs (8)
63this.HashName = HashAlgorithmNames.SHA3_256; 64_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA3_256, key, BlockSize); 77public static bool IsSupported { get; } = HashProviderDispenser.MacSupported(HashAlgorithmNames.SHA3_256); 190bytesWritten = HashProviderDispenser.OneShotHashProvider.MacData(HashAlgorithmNames.SHA3_256, key, source, destination); 227return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA3_256, key, source, destination); 250return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA3_256, HashSizeInBytes, key, source); 296return LiteHashProvider.HmacStreamAsync(HashAlgorithmNames.SHA3_256, key.Span, source, cancellationToken); 362HashAlgorithmNames.SHA3_256,
System\Security\Cryptography\IncrementalHash.cs (1)
379case HashAlgorithmNames.SHA3_256 when !SHA3_256.IsSupported:
System\Security\Cryptography\SHA3_256.cs (7)
45public static bool IsSupported { get; } = HashProviderDispenser.HashSupported(HashAlgorithmNames.SHA3_256); 144bytesWritten = HashProviderDispenser.OneShotHashProvider.HashData(HashAlgorithmNames.SHA3_256, source, destination); 183return LiteHashProvider.HashStream(HashAlgorithmNames.SHA3_256, source, destination); 208return LiteHashProvider.HashStream(HashAlgorithmNames.SHA3_256, HashSizeInBytes, source); 237return LiteHashProvider.HashStreamAsync(HashAlgorithmNames.SHA3_256, source, cancellationToken); 281HashAlgorithmNames.SHA3_256, 299_hashProvider = HashProviderDispenser.CreateHashProvider(HashAlgorithmNames.SHA3_256);