21 references to SHA256
System.Security.Cryptography (21)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.EVP.DigestAlgs.cs (2)
133case HashAlgorithmNames.SHA256: return EvpSha256(); 162case HashAlgorithmNames.SHA256:
src\libraries\Common\src\System\Security\Cryptography\MLDsa.cs (1)
2327hashAlgorithmIdentifier = HashAlgorithmNames.SHA256;
src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
83case HashAlgorithmNames.SHA256:
src\libraries\Common\src\System\Security\Cryptography\SP800108HmacCounterKdf.cs (1)
541case HashAlgorithmNames.SHA256:
System\Security\Cryptography\CryptographicOperations.cs (1)
1064case HashAlgorithmNames.SHA256:
System\Security\Cryptography\HashAlgorithmNames.cs (3)
36return HashAlgorithmNames.SHA256; 53if (hashAlgorithmName.Equals(SHA256, StringComparison.OrdinalIgnoreCase)) 55return SHA256;
System\Security\Cryptography\Helpers.cs (1)
424case HashAlgorithmNames.SHA256:
System\Security\Cryptography\HMACCommon.cs (1)
73case HashAlgorithmNames.SHA256:
System\Security\Cryptography\HMACSHA256.cs (3)
23static string IHMACStatic.HashAlgorithmName => HashAlgorithmNames.SHA256; 46this.HashName = HashAlgorithmNames.SHA256; 47_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA256, key, BlockSize);
System\Security\Cryptography\SHA256.cs (6)
111bytesWritten = HashProviderDispenser.OneShotHashProvider.HashData(HashAlgorithmNames.SHA256, source, destination); 146return LiteHashProvider.HashStream(HashAlgorithmNames.SHA256, source, destination); 167return LiteHashProvider.HashStream(HashAlgorithmNames.SHA256, HashSizeInBytes, source); 192return LiteHashProvider.HashStreamAsync(HashAlgorithmNames.SHA256, source, cancellationToken); 232HashAlgorithmNames.SHA256, 244_hashProvider = HashProviderDispenser.CreateHashProvider(HashAlgorithmNames.SHA256);
System\Security\Cryptography\SHA256Managed.cs (1)
18_hashProvider = HashProviderDispenser.CreateHashProvider(HashAlgorithmNames.SHA256);