X509Certificate2.CopyWithPrivateKey(ECDiffieHellman) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Combines a private key with the public key of an ECDiffieHellman certificate to generate a new ECDiffieHellman certificate.
public:
System::Security::Cryptography::X509Certificates::X509Certificate2 ^ CopyWithPrivateKey(System::Security::Cryptography::ECDiffieHellman ^ privateKey);
public System.Security.Cryptography.X509Certificates.X509Certificate2 CopyWithPrivateKey (System.Security.Cryptography.ECDiffieHellman privateKey);
member this.CopyWithPrivateKey : System.Security.Cryptography.ECDiffieHellman -> System.Security.Cryptography.X509Certificates.X509Certificate2
Public Function CopyWithPrivateKey (privateKey As ECDiffieHellman) As X509Certificate2
Parameters
- privateKey
- ECDiffieHellman
The private ECDiffieHellman key.
Returns
A new ECDiffieHellman certificate with the HasPrivateKey property set to true
.
The current certificate isn't modified.
Exceptions
privateKey
is null
.
The certificate already has an associated private key.
The certificate doesn't have a public key.
-or-
The specified private key doesn't match the public key for this certificate.