KeyVaultClientExtensions.WrapKeyAsync Method (KeyVaultClient, KeyBundle, Byte[], String)

 

Asynchronously wraps a symmetric key using the specified wrapping key and algorithm.

Namespace:   Microsoft.Azure.KeyVault
Assembly:  Microsoft.Azure.KeyVault (in Microsoft.Azure.KeyVault.dll)

Syntax

public static Task<KeyOperationResult> WrapKeyAsync(
    this KeyVaultClient client,
    KeyBundle wrappingKey,
    byte[] key,
    string algorithm
)
public:
[ExtensionAttribute]
static Task<KeyOperationResult^>^ WrapKeyAsync(
    KeyVaultClient^ client,
    KeyBundle^ wrappingKey,
    array<unsigned char>^ key,
    String^ algorithm
)
static member WrapKeyAsync : 
        client:KeyVaultClient *
        wrappingKey:KeyBundle *
        key:byte[] *
        algorithm:string -> Task<KeyOperationResult>
<ExtensionAttribute>
Public Shared Function WrapKeyAsync (
    client As KeyVaultClient,
    wrappingKey As KeyBundle,
    key As Byte(),
    algorithm As String
) As Task(Of KeyOperationResult)

Parameters

Return Value

Type: System.Threading.Tasks.Task<KeyOperationResult>

The wrapped key.

See Also

WrapKeyAsync Overload
KeyVaultClientExtensions Class
Microsoft.Azure.KeyVault Namespace

Return to top