RSACertificateExtensions.CopyWithPrivateKey(X509Certificate2, RSA) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Combine une clé privée avec la clé publique d’un certificat RSA pour générer un nouveau certificat RSA.
public:
[System::Runtime::CompilerServices::Extension]
static System::Security::Cryptography::X509Certificates::X509Certificate2 ^ CopyWithPrivateKey(System::Security::Cryptography::X509Certificates::X509Certificate2 ^ certificate, System::Security::Cryptography::RSA ^ privateKey);
public static System.Security.Cryptography.X509Certificates.X509Certificate2 CopyWithPrivateKey (this System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, System.Security.Cryptography.RSA privateKey);
static member CopyWithPrivateKey : System.Security.Cryptography.X509Certificates.X509Certificate2 * System.Security.Cryptography.RSA -> System.Security.Cryptography.X509Certificates.X509Certificate2
<Extension()>
Public Function CopyWithPrivateKey (certificate As X509Certificate2, privateKey As RSA) As X509Certificate2
Paramètres
- certificate
- X509Certificate2
Certificat RSA.
- privateKey
- RSA
Clé privée RSA.
Retours
Nouveau certificat RSA avec la propriété HasPrivateKey définie sur true
. L’objet de certificat RSA d’entrée n’est pas modifié.
Exceptions
certificate
ou privateKey
est null
.
Le certificat est déjà associé à une clé privée.
Le certificat n’a pas de clé publique.
- ou -
La clé privée spécifiée ne correspond pas à la clé publique du certificat spécifié.