AsymmetricKeyAlgorithmProvider.ImportKeyPair 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.
Surcharges
ImportKeyPair(IBuffer) |
Importe une paire de clés publique/privée à partir d’une mémoire tampon. |
ImportKeyPair(IBuffer, CryptographicPrivateKeyBlobType) |
Importe une paire de clés publique/privée à partir d’une mémoire tampon au format spécifié. |
ImportKeyPair(IBuffer)
Importe une paire de clés publique/privée à partir d’une mémoire tampon.
public:
virtual CryptographicKey ^ ImportKeyPair(IBuffer ^ keyBlob) = ImportKeyPair;
/// [Windows.Foundation.Metadata.Overload("ImportDefaultPrivateKeyBlob")]
CryptographicKey ImportKeyPair(IBuffer const& keyBlob);
[Windows.Foundation.Metadata.Overload("ImportDefaultPrivateKeyBlob")]
public CryptographicKey ImportKeyPair(IBuffer keyBlob);
function importKeyPair(keyBlob)
Public Function ImportKeyPair (keyBlob As IBuffer) As CryptographicKey
Paramètres
- keyBlob
- IBuffer
Mémoire tampon qui contient la paire de clés à importer.
Retours
Représente la paire de clés importée.
- Attributs
Voir aussi
S’applique à
ImportKeyPair(IBuffer, CryptographicPrivateKeyBlobType)
Importe une paire de clés publique/privée à partir d’une mémoire tampon au format spécifié.
public:
virtual CryptographicKey ^ ImportKeyPair(IBuffer ^ keyBlob, CryptographicPrivateKeyBlobType BlobType) = ImportKeyPair;
/// [Windows.Foundation.Metadata.Overload("ImportKeyPairWithBlobType")]
CryptographicKey ImportKeyPair(IBuffer const& keyBlob, CryptographicPrivateKeyBlobType const& BlobType);
[Windows.Foundation.Metadata.Overload("ImportKeyPairWithBlobType")]
public CryptographicKey ImportKeyPair(IBuffer keyBlob, CryptographicPrivateKeyBlobType BlobType);
function importKeyPair(keyBlob, BlobType)
Public Function ImportKeyPair (keyBlob As IBuffer, BlobType As CryptographicPrivateKeyBlobType) As CryptographicKey
Paramètres
- keyBlob
- IBuffer
Mémoire tampon qui contient la paire de clés à importer.
- BlobType
- CryptographicPrivateKeyBlobType
Valeur d’énumération CryptographicPrivateKeyBlobType qui spécifie des informations sur la clé privée contenue dans la mémoire tampon keyBlob . La valeur par défaut est Pkcs8RawPrivateKeyInfo.
Retours
Représente la paire de clés importée.
- Attributs