aesCbcDecrypt method

Future<Uint8List> aesCbcDecrypt({
  1. required Uint8List key,
  2. required Uint8List iv,
  3. required Uint8List ciphertext,
})

Implementation

Future<Uint8List> aesCbcDecrypt({
  required Uint8List key,
  required Uint8List iv,
  required Uint8List ciphertext,
}) {
  throw UnsupportedError('AES-CBC nao suportado nesta plataforma');
}