6 instantiations of RSAOpenSsl
System.Security.Cryptography (6)
System\Security\Cryptography\RSA.Create.OpenSsl.cs (1)
10return new RSAWrapper(new RSAOpenSsl());
System\Security\Cryptography\X509Certificates\OpenSslExportProvider.cs (1)
36Interop.Crypto.EvpAlgorithmId.RSA => new RSAOpenSsl(privateKey),
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (2)
558return new RSAOpenSsl(_privateKey); 697using (typedKey = new RSAOpenSsl(rsaParameters))
System\Security\Cryptography\X509Certificates\OpenSslX509Encoder.cs (1)
256var rsa = new RSAOpenSsl();
System\Security\Cryptography\X509Certificates\X509CertificateLoader.OpenSsl.cs (1)
66Oids.Rsa or Oids.RsaPss => new RSAOpenSsl(),
9 references to RSAOpenSsl
System.Net.Security (2)
System\Net\Security\SslStreamCertificateContext.Linux.cs (2)
78using (RSAOpenSsl? rsa = (RSAOpenSsl?)target.GetRSAPrivateKey())
System.Security.Cryptography (6)
System\Security\Cryptography\RSAOpenSsl.cs (1)
100throw new PlatformNotSupportedException(SR.Format(SR.PlatformNotSupported_CryptographyOpenSSLNotFound, nameof(RSAOpenSsl)));
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (2)
682RSAOpenSsl? typedKey = privateKey as RSAOpenSsl;
System\Security\Cryptography\X509Certificates\OpenSslX509Encoder.cs (2)
254private static RSAOpenSsl BuildRsaPublicKey(byte[] encodedData) 256var rsa = new RSAOpenSsl();
System\Security\Cryptography\X509Certificates\X509CertificateLoader.OpenSsl.cs (1)
75if (key is RSAOpenSsl rsa)
System.Security.Cryptography.OpenSsl (1)
System.Security.Cryptography.OpenSsl.cs (1)
7[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.RSAOpenSsl))]