9 references to HashStreamAsync
System.Security.Cryptography (9)
System\Security\Cryptography\CryptographicOperations.cs (1)
366return LiteHashProvider.HashStreamAsync(hashAlgorithm.Name, source, cancellationToken);
System\Security\Cryptography\MD5.cs (1)
200return LiteHashProvider.HashStreamAsync(HashAlgorithmNames.MD5, source, cancellationToken);
System\Security\Cryptography\SHA1.cs (1)
192return LiteHashProvider.HashStreamAsync(HashAlgorithmNames.SHA1, source, cancellationToken);
System\Security\Cryptography\SHA256.cs (1)
192return LiteHashProvider.HashStreamAsync(HashAlgorithmNames.SHA256, source, cancellationToken);
System\Security\Cryptography\SHA3_256.cs (1)
237return LiteHashProvider.HashStreamAsync(HashAlgorithmNames.SHA3_256, source, cancellationToken);
System\Security\Cryptography\SHA3_384.cs (1)
238return LiteHashProvider.HashStreamAsync(HashAlgorithmNames.SHA3_384, source, cancellationToken);
System\Security\Cryptography\SHA3_512.cs (1)
237return LiteHashProvider.HashStreamAsync(HashAlgorithmNames.SHA3_512, source, cancellationToken);
System\Security\Cryptography\SHA384.cs (1)
191return LiteHashProvider.HashStreamAsync(HashAlgorithmNames.SHA384, source, cancellationToken);
System\Security\Cryptography\SHA512.cs (1)
191return LiteHashProvider.HashStreamAsync(HashAlgorithmNames.SHA512, source, cancellationToken);