EncryptParameters.A128CbcParameters(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 for the A128Cbc encryption algorithm.
public static Azure.Security.KeyVault.Keys.Cryptography.EncryptParameters A128CbcParameters (byte[] plaintext, byte[] iv = default);
static member A128CbcParameters : byte[] * byte[] -> Azure.Security.KeyVault.Keys.Cryptography.EncryptParameters
Public Shared Function A128CbcParameters (plaintext As Byte(), Optional iv As Byte() = Nothing) As EncryptParameters
Parameters
- plaintext
- Byte[]
The plaintext 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 A128Cbc encryption algorithm.
Exceptions
plaintext
is null.
Remarks
Microsoft recommends you not use CBC without first ensuring the integrity of the ciphertext using an HMAC, for example. See https://docs.microsoft.com/dotnet/standard/security/vulnerabilities-cbc-mode for more information.
Applies to
Azure SDK for .NET