processBlockWithKey static method
void
processBlockWithKey()
Implementation
static void processBlockWithKey(
Uint8List inp,
int inpOff,
Uint8List out,
int outOff,
List<int> workingKey,
) {
final block = _bytesToInt64(inp, inpOff);
final processed = _desFunc(block, workingKey);
_int64ToBytes(processed, out, outOff);
}