4 overrides of ExportParameters
System.Security.Cryptography (4)
src\libraries\Common\src\System\Security\Cryptography\ECDiffieHellmanOpenSsl.cs (1)
121public override ECParameters ExportParameters(bool includePrivateParameters)
src\libraries\Common\src\System\Security\Cryptography\ECDsaOpenSsl.cs (1)
302public override ECParameters ExportParameters(bool includePrivateParameters)
System\Security\Cryptography\ECDiffieHellmanWrapper.cs (1)
54public override ECParameters ExportParameters(bool includePrivateParameters) =>
System\Security\Cryptography\ECDsaWrapper.cs (1)
120public override ECParameters ExportParameters(bool includePrivateParameters) =>
21 references to ExportParameters
System.Security.Cryptography (21)
System\Security\Cryptography\ECAlgorithm.cs (11)
110/// A derived class has not provided an implementation for <see cref="ExportParameters" />. 141ECParameters ecParameters = ExportParameters(true); 190/// A derived class has not provided an implementation for <see cref="ExportParameters" />. 213ECParameters ecParameters = ExportParameters(true); 253/// A derived class has not provided an implementation for <see cref="ExportParameters" />. 259ECParameters ecParameters = ExportParameters(true); 293/// A derived class has not provided an implementation for <see cref="ExportParameters" />. 299ECParameters ecParameters = ExportParameters(false); 617ECParameters ecParameters = ExportParameters(true); 649/// A derived class has not provided an implementation for <see cref="ExportParameters" />. 653ECParameters ecParameters = ExportParameters(true);
System\Security\Cryptography\ECDiffieHellmanWrapper.cs (1)
55_wrapped.ExportParameters(includePrivateParameters);
System\Security\Cryptography\ECDsa.cs (1)
1255ExportParameters(false);
System\Security\Cryptography\ECDsaWrapper.cs (1)
121_wrapped.ExportParameters(includePrivateParameters);
System\Security\Cryptography\X509Certificates\ECDsaCertificateExtensions.cs (2)
43if (!Helpers.AreSamePublicECParameters(publicKey.ExportParameters(false), privateKey.ExportParameters(false)))
System\Security\Cryptography\X509Certificates\ECDsaX509SignatureGenerator.cs (1)
71ECParameters ecParameters = _key.ExportParameters(false);
System\Security\Cryptography\X509Certificates\OpenSslX509CertificateReader.cs (2)
649ECParameters ecParameters = privateKey.ExportParameters(true); 669ECParameters ecParameters = privateKey.ExportParameters(true);
System\Security\Cryptography\X509Certificates\X509Certificate2.cs (2)
763if (!Helpers.AreSamePublicECParameters(publicKey.ExportParameters(false), privateKey.ExportParameters(false)))