calculateMacSync abstract method

Mac calculateMacSync(
  1. List<int> cipherText, {
  2. required SecretKeyData secretKeyData,
  3. required List<int> nonce,
  4. List<int> aad = const <int>[],
})

Computes a MAC synchronously (unlike calculateMac).

Implementation

Mac calculateMacSync(
  List<int> cipherText, {
  required SecretKeyData secretKeyData,
  required List<int> nonce,
  List<int> aad = const <int>[],
});