EncryptParameters.CkmAesKeyWrapParameters(Byte[], Byte[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates an instance of the EncryptParameters class using the CkmAesKeyWrap encryption algorithm.
public static Azure.Security.KeyVault.Keys.Cryptography.EncryptParameters CkmAesKeyWrapParameters(byte[] plaintext, byte[] iv = default);
static member CkmAesKeyWrapParameters : byte[] * byte[] -> Azure.Security.KeyVault.Keys.Cryptography.EncryptParameters
Public Shared Function CkmAesKeyWrapParameters (plaintext As Byte(), Optional iv As Byte() = Nothing) As EncryptParameters
Parameters
- plaintext
- Byte[]
The 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 CkmAesKeyWrap encryption algorithm.
Exceptions
plaintext is null.