CryptographyClient.IKeyEncryptionKey.UnwrapKeyAsync メソッド

定義

指定したアルゴリズムを使用して、指定された暗号化されたキーを復号化します。

System.Threading.Tasks.Task<byte[]> IKeyEncryptionKey.UnwrapKeyAsync (string algorithm, ReadOnlyMemory<byte> encryptedKey, System.Threading.CancellationToken cancellationToken);
abstract member Azure.Core.Cryptography.IKeyEncryptionKey.UnwrapKeyAsync : string * ReadOnlyMemory<byte> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<byte[]>
override this.Azure.Core.Cryptography.IKeyEncryptionKey.UnwrapKeyAsync : string * ReadOnlyMemory<byte> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<byte[]>
Function UnwrapKeyAsync (algorithm As String, encryptedKey As ReadOnlyMemory(Of Byte), cancellationToken As CancellationToken) As Task(Of Byte()) Implements IKeyEncryptionKey.UnwrapKeyAsync

パラメーター

algorithm
String

指定した暗号化されたキーを暗号化するために使用されたキー ラップ アルゴリズム。

encryptedKey
ReadOnlyMemory<Byte>

暗号化を解除する暗号化されたキー。

cancellationToken
CancellationToken

CancellationToken要求の有効期間を制御する 。

戻り値

Task<Byte[]>

暗号化解除されたキー バイト。

実装

適用対象