cmac128 static method

Uint8List cmac128(
  1. Uint8List keySeed
)

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

Implementation

static Uint8List cmac128(final Uint8List keySeed) {
  return derive(DeriveKeyType.CMAC128, keySeed);
}