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,