aes256 static method

Uint8List aes256(
  1. Uint8List keySeed, {
  2. bool paceMode = false,
})

Returns key for AES-256 derived from keySeed bytes and counter mode 1. If paceMode is true counter 3 is used.

Implementation

static Uint8List aes256(final Uint8List keySeed, { final bool paceMode = false }) {
  return derive(DeriveKeyType.AES256, keySeed, paceMode: paceMode);
}