D static method
Returns R
Implementation
@visibleForTesting
static Uint8List D({ required final Uint8List Kdec, required final Uint8List Eicc }) {
assert(Kdec.length == kLen);
assert(Eicc.length == eLen);
return DESedeDecrypt(key: Kdec, edata: Eicc, iv: Uint8List(DESCipher.blockSize), paddedData: false);
}