6 references to TryHashData
System.Security.Cryptography (6)
System\Security\Cryptography\CryptographicOperations.cs (1)
189if (!TryHashData(hashAlgorithm, source, destination, out int bytesWritten))
System\Security\Cryptography\DSA.cs (1)
528return CryptographicOperations.TryHashData(hashAlgorithm, data, destination, out bytesWritten);
System\Security\Cryptography\ECDsa.cs (1)
1003return CryptographicOperations.TryHashData(hashAlgorithm, data, destination, out bytesWritten);
System\Security\Cryptography\Pbkdf2Implementation.Windows.cs (1)
74if (!CryptographicOperations.TryHashData(hashAlgorithm, password, hashBuffer, out int hashBufferSize))
System\Security\Cryptography\RSA.cs (1)
311return CryptographicOperations.TryHashData(hashAlgorithm, data, destination, out bytesWritten);
System\Security\Cryptography\X509Certificates\X509Certificate.cs (1)
448return CryptographicOperations.TryHashData(hashAlgorithm, PalRawDataMemory.Span, destination, out bytesWritten);