cmac256 static method

Uint8List cmac256(
  1. Uint8List keySeed
)

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

Implementation

static Uint8List cmac256(final Uint8List keySeed) {
  return derive(DeriveKeyType.CMAC256, keySeed);
}