9 references to HashStream
System.Security.Cryptography (9)
System\Security\Cryptography\CryptographicOperations.cs (1)
231return LiteHashProvider.HashStream(hashAlgorithm.Name, hashSizeInBytes, source);
System\Security\Cryptography\MD5.cs (1)
174return LiteHashProvider.HashStream(HashAlgorithmNames.MD5, HashSizeInBytes, source);
System\Security\Cryptography\SHA1.cs (1)
167return LiteHashProvider.HashStream(HashAlgorithmNames.SHA1, HashSizeInBytes, source);
System\Security\Cryptography\SHA256.cs (1)
167return LiteHashProvider.HashStream(HashAlgorithmNames.SHA256, HashSizeInBytes, source);
System\Security\Cryptography\SHA3_256.cs (1)
208return LiteHashProvider.HashStream(HashAlgorithmNames.SHA3_256, HashSizeInBytes, source);
System\Security\Cryptography\SHA3_384.cs (1)
209return LiteHashProvider.HashStream(HashAlgorithmNames.SHA3_384, HashSizeInBytes, source);
System\Security\Cryptography\SHA3_512.cs (1)
208return LiteHashProvider.HashStream(HashAlgorithmNames.SHA3_512, HashSizeInBytes, source);
System\Security\Cryptography\SHA384.cs (1)
166return LiteHashProvider.HashStream(HashAlgorithmNames.SHA384, HashSizeInBytes, source);
System\Security\Cryptography\SHA512.cs (1)
166return LiteHashProvider.HashStream(HashAlgorithmNames.SHA512, HashSizeInBytes, source);