9 references to HmacStreamAsync
System.Security.Cryptography (9)
System\Security\Cryptography\CryptographicOperations.cs (1)
756return LiteHashProvider.HmacStreamAsync(hashAlgorithm.Name, key.Span, source, cancellationToken);
System\Security\Cryptography\HMACMD5.cs (1)
265return LiteHashProvider.HmacStreamAsync(HashAlgorithmNames.MD5, key.Span, source, cancellationToken);
System\Security\Cryptography\HMACSHA1.cs (1)
263return LiteHashProvider.HmacStreamAsync(HashAlgorithmNames.SHA1, key.Span, source, cancellationToken);
System\Security\Cryptography\HMACSHA256.cs (1)
255return LiteHashProvider.HmacStreamAsync(HashAlgorithmNames.SHA256, key.Span, source, cancellationToken);
System\Security\Cryptography\HMACSHA3_256.cs (1)
296return LiteHashProvider.HmacStreamAsync(HashAlgorithmNames.SHA3_256, key.Span, source, cancellationToken);
System\Security\Cryptography\HMACSHA3_384.cs (1)
296return LiteHashProvider.HmacStreamAsync(HashAlgorithmNames.SHA3_384, key.Span, source, cancellationToken);
System\Security\Cryptography\HMACSHA3_512.cs (1)
296return LiteHashProvider.HmacStreamAsync(HashAlgorithmNames.SHA3_512, key.Span, source, cancellationToken);
System\Security\Cryptography\HMACSHA384.cs (1)
272return LiteHashProvider.HmacStreamAsync(HashAlgorithmNames.SHA384, key.Span, source, cancellationToken);
System\Security\Cryptography\HMACSHA512.cs (1)
269return LiteHashProvider.HmacStreamAsync(HashAlgorithmNames.SHA512, key.Span, source, cancellationToken);