Deinterleaves a sequence of bytes. This is the reverse of interleave. Used when decrypting packets and data files.
interleave
the data to deinterleave
{0, 1, 2, 3, 4, 5} → {0, 2, 4, 5, 3, 1} Copy
{0, 1, 2, 3, 4, 5} → {0, 2, 4, 5, 3, 1}
This is an in-place operation.
Deinterleaves a sequence of bytes. This is the reverse of
interleave.Used when decrypting packets and data files.