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