decrypt method

Future<List<int>?> decrypt(
  1. List<int> encrypted,
  2. List<int> key,
  3. List<int> nonce,
  4. List<int> tag,
)

Implementation

Future<List<int>?> decrypt(
    List<int> encrypted, List<int> key, List<int> nonce, List<int> tag) {
  throw UnimplementedError('decrypt() has not been implemented.');
}