6 references to TryHashData
System.Security.Cryptography (6)
System\Security\Cryptography\CryptographicOperations.cs (1)
151if (!TryHashData(hashAlgorithm, source, destination, out int bytesWritten))
System\Security\Cryptography\DSA.cs (1)
528return CryptographicOperations.TryHashData(hashAlgorithm, data, destination, out bytesWritten);
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
122return CryptographicOperations.TryHashData(hashAlgorithm, data, destination, out bytesWritten);
System\Security\Cryptography\ECDsa.cs (1)
1003return CryptographicOperations.TryHashData(hashAlgorithm, data, destination, out bytesWritten);
System\Security\Cryptography\RSA.cs (1)
311return CryptographicOperations.TryHashData(hashAlgorithm, data, destination, out bytesWritten);
System\Security\Cryptography\X509Certificates\X509Certificate.cs (1)
361return CryptographicOperations.TryHashData(hashAlgorithm, Pal.RawData, destination, out bytesWritten);