iso9797MacAlg3 static method

Uint8List iso9797MacAlg3(
  1. Uint8List keySeed
)

Returns key for ISO9797 MAC algorithm 3 derived from keySeed bytes and counter mode 2.

Implementation

static Uint8List iso9797MacAlg3(final Uint8List keySeed) {
  return derive(DeriveKeyType.ISO9797MacAlg3, keySeed);
}