你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

EncryptParameters.CkmAesKeyWrapPadParameters(Byte[], Byte[]) Method

Definition

Creates an instance of the EncryptParameters class using the CkmAesKeyWrapPad encryption algorithm with PKCS#7 padding.

public static Azure.Security.KeyVault.Keys.Cryptography.EncryptParameters CkmAesKeyWrapPadParameters(byte[] plaintext, byte[] iv = default);
static member CkmAesKeyWrapPadParameters : byte[] * byte[] -> Azure.Security.KeyVault.Keys.Cryptography.EncryptParameters
Public Shared Function CkmAesKeyWrapPadParameters (plaintext As Byte(), Optional iv As Byte() = Nothing) As EncryptParameters

Parameters

plaintext
Byte[]

The plain text to encrypt.

iv
Byte[]

Optional initialization vector. If null, a cryptographically random initialization vector will be generated using RandomNumberGenerator.

Returns

An instance of the EncryptParameters class for the CkmAesKeyWrapPad encryption algorithm.

Exceptions

plaintext is null.

Applies to