AESDecryption constructor

AESDecryption({
  1. required String encryptionKey,
  2. AESMode? mode,
  3. String? padding,
})

Constructor for AESDecryption class.

encryptionKey is the key used for decryption. It must match the key used for encryption. accessKey is the key used to retrieve the encrypted value. mode is the AES mode (e.g., AESMode.sic). If not provided, AESMode.sic is used by default. padding is the padding scheme to be used. If not provided, the default padding is used.

Implementation

AESDecryption({
  required this.encryptionKey,
  this.mode,
  this.padding,
});