cmac192 static method

Uint8List cmac192(
  1. Uint8List keySeed
)

Returns key for CMAC-192 derived from keySeed bytes and counter mode 2.

Implementation

static Uint8List cmac192(final Uint8List keySeed) {
  return derive(DeriveKeyType.CMAC192, keySeed);
}