23 references to SHA256
System.Security.Cryptography (23)
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\RsaPaddingProcessor.cs (1)
83case HashAlgorithmNames.SHA256:
src\libraries\Common\src\System\Security\Cryptography\SP800108HmacCounterKdf.cs (1)
558case HashAlgorithmNames.SHA256:
System\Security\Cryptography\CryptographicOperations.cs (1)
777case HashAlgorithmNames.SHA256:
System\Security\Cryptography\HashAlgorithmNames.cs (3)
36return HashAlgorithmNames.SHA256; 53if (hashAlgorithmName.Equals(SHA256, StringComparison.OrdinalIgnoreCase)) 55return SHA256;
System\Security\Cryptography\HMACCommon.cs (1)
62case HashAlgorithmNames.SHA256:
System\Security\Cryptography\HMACSHA256.cs (7)
39this.HashName = HashAlgorithmNames.SHA256; 40_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA256, key, BlockSize); 152bytesWritten = HashProviderDispenser.OneShotHashProvider.MacData(HashAlgorithmNames.SHA256, key, source, destination); 188return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA256, key, source, destination); 210return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA256, HashSizeInBytes, key, source); 255return LiteHashProvider.HmacStreamAsync(HashAlgorithmNames.SHA256, key.Span, source, cancellationToken); 320HashAlgorithmNames.SHA256,
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);