9 references to HashStream
System.Security.Cryptography (9)
System\Security\Cryptography\CryptographicOperations.cs (1)
269int written = LiteHashProvider.HashStream(hashAlgorithm.Name, source, destination);
System\Security\Cryptography\MD5.cs (1)
152return LiteHashProvider.HashStream(HashAlgorithmNames.MD5, source, destination);
System\Security\Cryptography\SHA1.cs (1)
146return LiteHashProvider.HashStream(HashAlgorithmNames.SHA1, source, destination);
System\Security\Cryptography\SHA256.cs (1)
146return LiteHashProvider.HashStream(HashAlgorithmNames.SHA256, source, destination);
System\Security\Cryptography\SHA3_256.cs (1)
183return LiteHashProvider.HashStream(HashAlgorithmNames.SHA3_256, source, destination);
System\Security\Cryptography\SHA3_384.cs (1)
184return LiteHashProvider.HashStream(HashAlgorithmNames.SHA3_384, source, destination);
System\Security\Cryptography\SHA3_512.cs (1)
183return LiteHashProvider.HashStream(HashAlgorithmNames.SHA3_512, source, destination);
System\Security\Cryptography\SHA384.cs (1)
145return LiteHashProvider.HashStream(HashAlgorithmNames.SHA384, source, destination);
System\Security\Cryptography\SHA512.cs (1)
145return LiteHashProvider.HashStream(HashAlgorithmNames.SHA512, source, destination);