aesDecrypt method

Future<Uint8List> aesDecrypt({
  1. required Uint8List ciphertext,
  2. required Uint8List key,
  3. required Uint8List nonce,
  4. required Uint8List mac,
})

Implementation

Future<Uint8List> aesDecrypt(
    {required Uint8List ciphertext,
    required Uint8List key,
    required Uint8List nonce,
    required Uint8List mac}) async {
  throw UnimplementedError('platformVersion() has not been implemented.');
}