AesCbcDecryptParameters interface
Decryption parameters for AES-CBC encryption algorithms.
Properties
algorithm | The encryption algorithm to use. |
ciphertext | The ciphertext to decrypt. 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. |
iv | The initialization vector generated during encryption. |
Property Details
algorithm
The encryption algorithm to use.
algorithm: AesCbcEncryptionAlgorithm
Property Value
ciphertext
The ciphertext to decrypt. 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.
ciphertext: Uint8Array
Property Value
Uint8Array
iv
The initialization vector generated during encryption.
iv: Uint8Array
Property Value
Uint8Array