你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
CryptographyClient.UnwrapKeyAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
对指定的加密密钥进行解密。
public virtual System.Threading.Tasks.Task<Azure.Security.KeyVault.Keys.Cryptography.UnwrapResult> UnwrapKeyAsync (Azure.Security.KeyVault.Keys.Cryptography.KeyWrapAlgorithm algorithm, byte[] encryptedKey, System.Threading.CancellationToken cancellationToken = default);
abstract member UnwrapKeyAsync : Azure.Security.KeyVault.Keys.Cryptography.KeyWrapAlgorithm * byte[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Security.KeyVault.Keys.Cryptography.UnwrapResult>
override this.UnwrapKeyAsync : Azure.Security.KeyVault.Keys.Cryptography.KeyWrapAlgorithm * byte[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Security.KeyVault.Keys.Cryptography.UnwrapResult>
Public Overridable Function UnwrapKeyAsync (algorithm As KeyWrapAlgorithm, encryptedKey As Byte(), Optional cancellationToken As CancellationToken = Nothing) As Task(Of UnwrapResult)
参数
- algorithm
- KeyWrapAlgorithm
要使用的 KeyWrapAlgorithm。
- encryptedKey
- Byte[]
加密密钥。
- cancellationToken
- CancellationToken
用于取消此操作的 CancellationToken。
返回
解包操作的结果。 返回的 UnwrapResult 包含密钥以及有关用于解包它的算法和密钥的信息。
例外
指定的 algorithm
与密钥标识符对应的密钥不匹配。
本地加密提供程序引发了异常。
键对于当前操作无效。
指定键不支持该操作。
服务器返回了错误。 有关从服务器返回的详细信息,请参阅 Message 。