E static method
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);
}