E static method

  1. @visibleForTesting
Uint8List E({
  1. required Uint8List Kenc,
  2. required Uint8List S,
})

Returns Eifd

Implementation

@visibleForTesting
static Uint8List E(
    {required final Uint8List Kenc, required final Uint8List S}) {
  assert(Kenc.length == kLen);
  assert(S.length == sLen);
  return DESedeEncrypt(
      key: Kenc, data: S, iv: Uint8List(DESCipher.blockSize), padData: false);
}