20 references to SHA3_256
System.Security.Cryptography (20)
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\MLDsa.cs (1)
2332hashAlgorithmIdentifier = 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)
546case HashAlgorithmNames.SHA3_256:
System\Security\Cryptography\CryptographicOperations.cs (2)
1072case HashAlgorithmNames.SHA3_256: 1073if (!HashProviderDispenser.HashSupported(HashAlgorithmNames.SHA3_256))
System\Security\Cryptography\HMACCommon.cs (1)
82case HashAlgorithmNames.SHA3_256:
System\Security\Cryptography\HMACSHA3_256.cs (4)
20static string IHMACStatic.HashAlgorithmName => HashAlgorithmNames.SHA3_256; 70this.HashName = HashAlgorithmNames.SHA3_256; 71_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA3_256, key, BlockSize); 84public static bool IsSupported { get; } = HashProviderDispenser.MacSupported(HashAlgorithmNames.SHA3_256);
System\Security\Cryptography\IncrementalHash.cs (1)
456case 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);