desEDE static method
Returns key for DESede derived from keySeed bytes and counter mode 1.
If paceMode is true counter 3 is used.
Implementation
static Uint8List desEDE(final Uint8List keySeed, { final bool paceMode = false }) {
return derive(DeriveKeyType.DESede, keySeed, paceMode: paceMode);
}