mac method

  1. @override
Uint8List mac(
  1. Uint8List data, {
  2. SSC? ssc,
})
override

Calculates MAC of data. data must be padded (if needed) before calling this function.

Implementation

@override
Uint8List mac(Uint8List data, {SSC? ssc}) {
  return ISO9797.macAlg3(macKey, data, padMsg: false);
}