4 overrides of ExportParameters
System.Security.Cryptography (4)
src\libraries\Common\src\System\Security\Cryptography\RSAOpenSsl.cs (1)
420public override RSAParameters ExportParameters(bool includePrivateParameters)
System\Security\Cryptography\Cng.NotSupported.cs (1)
360public override RSAParameters ExportParameters(bool includePrivateParameters) => default;
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
119public override RSAParameters ExportParameters(bool includePrivateParameters) =>
System\Security\Cryptography\RSAWrapper.cs (1)
47public override RSAParameters ExportParameters(bool includePrivateParameters) =>
12 references to ExportParameters
Microsoft.AspNetCore.Identity.Test (1)
Passkeys\CredentialKeyPair.cs (1)
112var parameters = rsa.ExportParameters(false);
System.Security.Cryptography (9)
src\libraries\Common\src\System\Security\Cryptography\CompositeMLDsaManaged.RSA.cs (1)
112_ = rsa.ExportParameters(includePrivateParameters: false);
System\Security\Cryptography\RSA.cs (2)
849RSAParameters rsaParameters = ExportParameters(false); 855RSAParameters rsaParameters = ExportParameters(true);
System\Security\Cryptography\RSA.Xml.cs (1)
109RSAParameters keyParameters = ExportParameters(includePrivateParameters);
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
120_impl.ExportParameters(includePrivateParameters);
System\Security\Cryptography\RSAWrapper.cs (1)
48_wrapped.ExportParameters(includePrivateParameters);
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (1)
771RSAParameters rsaParameters = privateKey.ExportParameters(true);
System\Security\Cryptography\X509Certificates\RSACertificateExtensions.cs (2)
43RSAParameters currentParameters = publicKey.ExportParameters(false); 44RSAParameters newParameters = privateKey.ExportParameters(false);
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\RSAKeyValue.cs (1)
70RSAParameters rsaParams = _key.ExportParameters(false);
System.ServiceModel.Primitives (1)
System\ServiceModel\RsaEndpointIdentity.cs (1)
66RSAParameters parameters = rsa.ExportParameters(false);