11 references to HashAlgorithmToEvp
System.Security.Cryptography (11)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.EvpPkey.Rsa.cs (2)
142IntPtr digestAlgorithmPtr = Interop.Crypto.HashAlgorithmToEvp(digestAlgorithm.Name); 183IntPtr digestAlgorithmPtr = Interop.Crypto.HashAlgorithmToEvp(digestAlgorithm.Name);
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (2)
194hashAlgorithm = Interop.Crypto.HashAlgorithmToEvp(padding.OaepHashAlgorithm.Name); 261hashAlgorithm = Interop.Crypto.HashAlgorithmToEvp(padding.OaepHashAlgorithm.Name);
System\Security\Cryptography\HashProviderDispenser.OpenSsl.cs (1)
47IntPtr evpType = Interop.Crypto.HashAlgorithmToEvp(hashAlgorithmId);
System\Security\Cryptography\HashProviderDispenser.Unix.cs (2)
40IntPtr evpType = Interop.Crypto.HashAlgorithmToEvp(hashAlgorithmId); 58IntPtr evpType = Interop.Crypto.HashAlgorithmToEvp(hashAlgorithmId);
System\Security\Cryptography\LiteHash.Unix.cs (3)
14IntPtr algorithm = Interop.Crypto.HashAlgorithmToEvp(hashAlgorithmId); 20IntPtr algorithm = Interop.Crypto.HashAlgorithmToEvp(hashAlgorithmId); 26IntPtr algorithm = Interop.Crypto.HashAlgorithmToEvp(hashAlgorithmId);
System\Security\Cryptography\Pbkdf2Implementation.OpenSsl.cs (1)
19IntPtr evpHashType = Interop.Crypto.HashAlgorithmToEvp(hashAlgorithmName.Name);